diff --git a/api-specs/api/api.raml b/api-specs/api/api.raml index e548cbf0bd..1b50ba93f2 100644 --- a/api-specs/api/api.raml +++ b/api-specs/api/api.raml @@ -126,6 +126,51 @@ resourceTypes: description: | ## Not Found + A 404 indicates that the <> was not found / does not exist. + baseSubResource: + type: base + get: + is: + - expandable + displayName: Get <>. + responses: + 200: + body: + application/json: + type: <> + post?: + is: + - conflicting + - expandable + - deprecatable200 + displayName: Update <>. + body: + application/json: + type: <> + responses: + 200: + body: + application/json: + type: <> + delete?: + is: + - versioned + - conflicting + - expandable + displayName: Delete <>. + responses: + 200: + body: + application/json: + type: <> + head?: + displayName: Check whether <> exists. + responses: + 200: + 404: + description: | + ## Not Found + A 404 indicates that the <> was not found / does not exist. base: get?: @@ -202,6 +247,7 @@ resourceTypes: /product-discounts: !include resources/product-discounts.raml /product-projections: !include resources/product-projections.raml /product-selections: !include resources/product-selections.raml + /product-tailoring: !include resources/product-tailoring.raml /product-types: !include resources/product-types.raml /quotes: !include resources/quotes.raml /quote-requests: !include resources/quote-requests.raml diff --git a/api-specs/api/examples/Common/AddressDraft.json b/api-specs/api/examples/Common/AddressDraft.json new file mode 100644 index 0000000000..fdc286912e --- /dev/null +++ b/api-specs/api/examples/Common/AddressDraft.json @@ -0,0 +1,14 @@ +{ + "key": "address1", + "title": "Mrs.", + "firstName": "Jane", + "lastName": "Doe", + "streetName": "First Street", + "streetNumber": "12", + "postalCode": "12345", + "city": "Example City", + "country": "NL", + "phone": "+312345678", + "mobile": "+312345679", + "email": "jane.doe@example.com" +} diff --git a/api-specs/api/examples/DiscountCode/DiscountCodeSetKeyAction.json b/api-specs/api/examples/DiscountCode/DiscountCodeSetKeyAction.json new file mode 100644 index 0000000000..60c017ebf2 --- /dev/null +++ b/api-specs/api/examples/DiscountCode/DiscountCodeSetKeyAction.json @@ -0,0 +1,4 @@ +{ + "action": "setKey", + "key": "new-key" +} diff --git a/api-specs/api/examples/Product/ProductChangeAssetNameAction.json b/api-specs/api/examples/Product/ProductChangeAssetNameAction.json index 21baa86d63..8cd6a5ac11 100644 --- a/api-specs/api/examples/Product/ProductChangeAssetNameAction.json +++ b/api-specs/api/examples/Product/ProductChangeAssetNameAction.json @@ -1,8 +1,9 @@ { "action": "changeAssetName", + "variantId": 1, "assetId": "{{assetId}}", "name": { "de": "Mein Asset", "en": "My asset" } -} \ No newline at end of file +} diff --git a/api-specs/api/examples/Product/ProductChangeAssetOrderAction.json b/api-specs/api/examples/Product/ProductChangeAssetOrderAction.json index e52fdca30e..6471de9c7c 100644 --- a/api-specs/api/examples/Product/ProductChangeAssetOrderAction.json +++ b/api-specs/api/examples/Product/ProductChangeAssetOrderAction.json @@ -1,4 +1,5 @@ { "action": "changeAssetOrder", - "assetOrder": ["{{assetId1}}","{{assetId2}}"] -} \ No newline at end of file + "variantId": 1, + "assetOrder": ["{{assetId1}}", "{{assetId2}}"] +} diff --git a/api-specs/api/examples/Product/ProductSetAssetCustomFieldAction.json b/api-specs/api/examples/Product/ProductSetAssetCustomFieldAction.json index 2548d02ed5..fa3b0ae8e6 100644 --- a/api-specs/api/examples/Product/ProductSetAssetCustomFieldAction.json +++ b/api-specs/api/examples/Product/ProductSetAssetCustomFieldAction.json @@ -1,5 +1,6 @@ { "action": "setAssetCustomField", + "variantId": 1, "assetId": "{{assetId}}", "name": "ExampleStringTypeField", "value": "TextString" diff --git a/api-specs/api/examples/Product/ProductSetAssetCustomTypeAction.json b/api-specs/api/examples/Product/ProductSetAssetCustomTypeAction.json index 1172e5d60d..0de58e64a7 100644 --- a/api-specs/api/examples/Product/ProductSetAssetCustomTypeAction.json +++ b/api-specs/api/examples/Product/ProductSetAssetCustomTypeAction.json @@ -1,5 +1,6 @@ { "action": "setAssetCustomType", + "variantId": 1, "assetId": "{{assetId}}", "type": { "id": "{{type-id}}", diff --git a/api-specs/api/examples/Product/ProductSetAssetDescriptionAction.json b/api-specs/api/examples/Product/ProductSetAssetDescriptionAction.json index d845b0a488..5c2c6d082c 100644 --- a/api-specs/api/examples/Product/ProductSetAssetDescriptionAction.json +++ b/api-specs/api/examples/Product/ProductSetAssetDescriptionAction.json @@ -1,8 +1,9 @@ { "action": "setAssetDescription", + "variantId": 1, "assetId": "{{assetId}}", "description": { "de": "Dies ist eine Asset-Beschreibung", "en": "This is an asset description" } -} \ No newline at end of file +} diff --git a/api-specs/api/examples/Product/ProductSetAssetKeyAction.json b/api-specs/api/examples/Product/ProductSetAssetKeyAction.json index 76f1804fa2..c1ba38107b 100644 --- a/api-specs/api/examples/Product/ProductSetAssetKeyAction.json +++ b/api-specs/api/examples/Product/ProductSetAssetKeyAction.json @@ -1,5 +1,6 @@ { "action": "setAssetKey", + "variantId": 1, "assetId": "{{assetId}}", "assetKey": "assetKeyString" -} \ No newline at end of file +} diff --git a/api-specs/api/examples/Product/ProductSetAssetSourcesAction.json b/api-specs/api/examples/Product/ProductSetAssetSourcesAction.json index 2e715bf9fe..2841073552 100644 --- a/api-specs/api/examples/Product/ProductSetAssetSourcesAction.json +++ b/api-specs/api/examples/Product/ProductSetAssetSourcesAction.json @@ -1,8 +1,11 @@ { "action": "setAssetSources", + "variantId": 1, "assetId": "{{assetId}}", - "sources": [{ - "uri": "https://www.commercetools.de/ct-logo.svg", - "key": "vector" - }] -} \ No newline at end of file + "sources": [ + { + "uri": "https://www.commercetools.de/ct-logo.svg", + "key": "vector" + } + ] +} diff --git a/api-specs/api/examples/Product/ProductSetAssetTagsAction.json b/api-specs/api/examples/Product/ProductSetAssetTagsAction.json index 3cbcaf151e..51e1590f6e 100644 --- a/api-specs/api/examples/Product/ProductSetAssetTagsAction.json +++ b/api-specs/api/examples/Product/ProductSetAssetTagsAction.json @@ -1,5 +1,6 @@ { "action": "setAssetTags", + "variantId": 1, "assetId": "{{assetId}}", - "tags": ["commercetools","awesome"] -} \ No newline at end of file + "tags": ["commercetools", "awesome"] +} diff --git a/api-specs/api/examples/ProductSearch/product-search-request.example.json b/api-specs/api/examples/ProductSearch/product-search-request.example.json new file mode 100644 index 0000000000..55996fa292 --- /dev/null +++ b/api-specs/api/examples/ProductSearch/product-search-request.example.json @@ -0,0 +1,33 @@ +{ + "query": { + "and": [ + { + "fullText": { + "field": "name", + "language": "en", + "value": "banana" + } + }, + { + "filter": [ + { + "exact": { + "field": "variants.attributes.farming", + "fieldType": "text", + "value": "organic" + } + } + ] + } + ] + }, + "sort": [ + { + "field": "name", + "language": "en", + "order": "desc" + } + ], + "limit": 10, + "offset": 0 +} diff --git a/api-specs/api/examples/ProductSearch/product-search-response.example.json b/api-specs/api/examples/ProductSearch/product-search-response.example.json new file mode 100644 index 0000000000..eda9993f17 --- /dev/null +++ b/api-specs/api/examples/ProductSearch/product-search-response.example.json @@ -0,0 +1,39 @@ +{ + "total": 148, + "offset": 0, + "limit": 10, + "facets": [ + { + "name": "countProducts", + "buckets": [ + { + "key": "white", + "count": 37 + } + ] + }, + { + "name": "countVariants", + "buckets": [ + { + "key": "white", + "count": 301 + } + ] + } + ], + "results": [ + { + "id": "8fde2af0-6a2f-4633-9ba4-83566f769a7f", + "matchingVariants": { + "allMatched": false, + "matchedVariants": [ + { + "id": 1, + "sku": null + } + ] + } + } + ] +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringPublishAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringPublishAction.json new file mode 100644 index 0000000000..ebf3599551 --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringPublishAction.json @@ -0,0 +1 @@ +{ "action": "publish" } diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetDescriptionAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetDescriptionAction.json new file mode 100644 index 0000000000..3b4afa869a --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetDescriptionAction.json @@ -0,0 +1,5 @@ +{ + "action": "setDescription", + "description": { "en": "A description" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaAttributesAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaAttributesAction.json new file mode 100644 index 0000000000..90087a575d --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaAttributesAction.json @@ -0,0 +1,7 @@ +{ + "action": "setMetaAttributes", + "metaTitle": { "en": "A Meta Title" }, + "metaDescription": { "en": "A Meta Description" }, + "metaKeywords": { "en": "Meta Keywords" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaDescriptionAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaDescriptionAction.json new file mode 100644 index 0000000000..9e37193b94 --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaDescriptionAction.json @@ -0,0 +1,5 @@ +{ + "action": "setMetaDescription", + "metaDescription": { "en": "A Meta Description" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaKeywordsAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaKeywordsAction.json new file mode 100644 index 0000000000..0b437219b3 --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaKeywordsAction.json @@ -0,0 +1,5 @@ +{ + "action": "setMetaKeywords", + "metaKeywords": { "en": "Meta Keywords" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaTitleAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaTitleAction.json new file mode 100644 index 0000000000..ca9bb2901b --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetMetaTitleAction.json @@ -0,0 +1,5 @@ +{ + "action": "setMetaTitle", + "metaTitle": { "en": "A Meta Title" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetNameAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetNameAction.json new file mode 100644 index 0000000000..212829ca74 --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetNameAction.json @@ -0,0 +1,5 @@ +{ + "action": "setName", + "name": { "en": "A name" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringSetSlugAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringSetSlugAction.json new file mode 100644 index 0000000000..4a5dcdd599 --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringSetSlugAction.json @@ -0,0 +1,5 @@ +{ + "action": "setSlug", + "slug": { "en": "a-slug" }, + "staged": true +} diff --git a/api-specs/api/examples/ProductTailoring/ProductTailoringUnpublishAction.json b/api-specs/api/examples/ProductTailoring/ProductTailoringUnpublishAction.json new file mode 100644 index 0000000000..b7ff0d5916 --- /dev/null +++ b/api-specs/api/examples/ProductTailoring/ProductTailoringUnpublishAction.json @@ -0,0 +1 @@ +{ "action": "unpublish" } diff --git a/api-specs/api/examples/Project/ProjectChangeProductSearchIndexingEnabledAction.json b/api-specs/api/examples/Project/ProjectChangeProductSearchIndexingEnabledAction.json index 0dee63a44d..f7dad96112 100644 --- a/api-specs/api/examples/Project/ProjectChangeProductSearchIndexingEnabledAction.json +++ b/api-specs/api/examples/Project/ProjectChangeProductSearchIndexingEnabledAction.json @@ -1,4 +1,5 @@ { "action": "changeProductSearchIndexingEnabled", - "enabled": true + "enabled": true, + "mode": "ProductsSearch" } diff --git a/api-specs/api/examples/customer-sign-in-result.example.json b/api-specs/api/examples/customer-sign-in-result.example.json index f1f96a4dc1..43a433e345 100644 --- a/api-specs/api/examples/customer-sign-in-result.example.json +++ b/api-specs/api/examples/customer-sign-in-result.example.json @@ -10,6 +10,7 @@ "version": 1, "createdAt": "2015-07-06T13:22:33.339Z", "lastModifiedAt": "2015-07-06T13:22:33.339Z", - "authenticationMode": "Password" + "authenticationMode": "Password", + "stores": [] } } diff --git a/api-specs/api/examples/customer-update-response.example.json b/api-specs/api/examples/customer-update-response.example.json index 430ce16594..8b5b69de1b 100644 --- a/api-specs/api/examples/customer-update-response.example.json +++ b/api-specs/api/examples/customer-update-response.example.json @@ -18,5 +18,6 @@ "version": 4, "createdAt": "2015-05-06T12:10:12.421Z", "lastModifiedAt": "2015-07-06T13:22:33.339Z", - "authenticationMode": "Password" + "authenticationMode": "Password", + "stores": [] } diff --git a/api-specs/api/examples/order-edits.example.json b/api-specs/api/examples/order-edits.example.json index 6398846cd5..45c2354e43 100644 --- a/api-specs/api/examples/order-edits.example.json +++ b/api-specs/api/examples/order-edits.example.json @@ -106,7 +106,19 @@ "currencyCode": "EUR", "centAmount": 570, "fractionDigits": 2 - } + }, + "taxPortions": [ + { + "rate": 0.1, + "amount": { + "type": "centPrecision", + "currencyCode": "EUR", + "centAmount": 634, + "fractionDigits": 2 + }, + "name": "Bla" + } + ] }, "shippingMethodState": "MatchesCart" }, @@ -203,7 +215,19 @@ "currencyCode": "EUR", "centAmount": 3400, "fractionDigits": 2 - } + }, + "taxPortions": [ + { + "rate": 0.1, + "amount": { + "type": "centPrecision", + "currencyCode": "EUR", + "centAmount": 634, + "fractionDigits": 2 + }, + "name": "Bla" + } + ] }, "lineItemMode": "Standard", "perMethodTaxRate": [], diff --git a/api-specs/api/examples/order.example.json b/api-specs/api/examples/order.example.json index 7de9c3e454..5dfb4b2e4b 100644 --- a/api-specs/api/examples/order.example.json +++ b/api-specs/api/examples/order.example.json @@ -115,7 +115,19 @@ "fractionDigits": 2, "currencyCode": "EUR", "centAmount": 1100 - } + }, + "taxPortions": [ + { + "rate": 0.1, + "amount": { + "type": "centPrecision", + "currencyCode": "EUR", + "centAmount": 634, + "fractionDigits": 2 + }, + "name": "Bla" + } + ] }, "perMethodTaxRate": [], "taxedPricePortions": [] diff --git a/api-specs/api/examples/orders.example.json b/api-specs/api/examples/orders.example.json index 441407d316..aba50a16af 100644 --- a/api-specs/api/examples/orders.example.json +++ b/api-specs/api/examples/orders.example.json @@ -121,7 +121,19 @@ "fractionDigits": 2, "currencyCode": "EUR", "centAmount": 1100 - } + }, + "taxPortions": [ + { + "rate": 0.1, + "amount": { + "type": "centPrecision", + "currencyCode": "EUR", + "centAmount": 634, + "fractionDigits": 2 + }, + "name": "Bla" + } + ] }, "perMethodTaxRate": [], "taxedPricePortions": [] diff --git a/api-specs/api/examples/product-tailoring-create.example.json b/api-specs/api/examples/product-tailoring-create.example.json new file mode 100644 index 0000000000..ba85ca16e3 --- /dev/null +++ b/api-specs/api/examples/product-tailoring-create.example.json @@ -0,0 +1,14 @@ +{ + "product": { + "typeId": "product", + "id": "daf720e5-9e8e-4300-98db-3a3219327db9" + }, + "store": { "key": "store-key" }, + "name": { "en": "tailored name" }, + "metaTitle": { "en": "tailored meta title" }, + "metaDescription": { "en": "tailored meta description" }, + "metaKeywords": { "en": "tailored meta keywords" }, + "slug": { "en": "tailored-slug" }, + "description": { "en": "tailored description" }, + "publish": false +} diff --git a/api-specs/api/examples/product-tailoring-in-store-create.example.json b/api-specs/api/examples/product-tailoring-in-store-create.example.json new file mode 100644 index 0000000000..a7eedec06a --- /dev/null +++ b/api-specs/api/examples/product-tailoring-in-store-create.example.json @@ -0,0 +1,13 @@ +{ + "product": { + "typeId": "product", + "id": "daf720e5-9e8e-4300-98db-3a3219327db9" + }, + "name": { "en": "tailored name" }, + "metaTitle": { "en": "tailored meta title" }, + "metaDescription": { "en": "tailored meta description" }, + "metaKeywords": { "en": "tailored meta keywords" }, + "slug": { "en": "tailored-slug" }, + "description": { "en": "tailored description" }, + "publish": false +} diff --git a/api-specs/api/examples/product-tailoring-list.example.json b/api-specs/api/examples/product-tailoring-list.example.json new file mode 100644 index 0000000000..72ad328543 --- /dev/null +++ b/api-specs/api/examples/product-tailoring-list.example.json @@ -0,0 +1,106 @@ +{ + "limit": 20, + "offset": 0, + "count": 2, + "results": [ + { + "id": "207ee692-6002-4570-a78c-d15e7adbebbb", + "version": 2, + "versionModifiedAt": "2023-09-01T13:41:50.662Z", + "createdAt": "2023-09-01T13:26:10.475Z", + "lastModifiedAt": "2023-09-01T13:26:10.475Z", + "lastModifiedBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "createdBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "product": { + "typeId": "product", + "id": "daf720e5-9e8e-4300-98db-3a3219327db9" + }, + "store": { + "typeId": "store", + "key": "store-key" + }, + "current": { + "variants": [] + }, + "staged": { + "name": { + "en": "tailored name" + }, + "description": { + "en": "tailored description" + }, + "metaTitle": { + "en": "tailored meta title" + }, + "metaDescription": { + "en": "tailored meta description" + }, + "metaKeywords": { + "en": "tailored meta keywords" + }, + "slug": { + "en": "tailored-slug" + }, + "variants": [] + }, + "published": false, + "hasStagedChanges": true + }, + + { + "id": "207ee692-6002-4570-a78c-d15e7adbecc", + "version": 2, + "versionModifiedAt": "2023-09-01T13:42:50.662Z", + "createdAt": "2023-09-01T13:27:10.475Z", + "lastModifiedAt": "2023-09-01T14:26:10.475Z", + "lastModifiedBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "createdBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "product": { + "typeId": "product", + "id": "daf720e5-9e8e-4300-98db-3a3219327db9" + }, + "store": { + "typeId": "store", + "key": "store-two" + }, + "current": { + "variants": [] + }, + "staged": { + "name": { + "en": "Second store tailored name" + }, + "description": { + "en": "This is a tailored description" + }, + "metaTitle": { + "en": "tailored meta title" + }, + "metaDescription": { + "en": "tailored meta description" + }, + "metaKeywords": { + "en": "tailored meta keywords" + }, + "slug": { + "en": "tailored-slug-two" + }, + "variants": [] + }, + "published": false, + "hasStagedChanges": true + } + ] +} diff --git a/api-specs/api/examples/product-tailoring-update.example.json b/api-specs/api/examples/product-tailoring-update.example.json new file mode 100644 index 0000000000..4281350841 --- /dev/null +++ b/api-specs/api/examples/product-tailoring-update.example.json @@ -0,0 +1,10 @@ +{ + "version": 1, + "actions": [ + { + "action": "setDescription", + "description": { "en": "A description" }, + "staged": true + } + ] +} diff --git a/api-specs/api/examples/product-tailoring-updated.example.json b/api-specs/api/examples/product-tailoring-updated.example.json new file mode 100644 index 0000000000..a9cc5bdac2 --- /dev/null +++ b/api-specs/api/examples/product-tailoring-updated.example.json @@ -0,0 +1,40 @@ +{ + "id": "207ee692-6002-4570-a78c-d15e7adbebbb", + "version": 2, + "versionModifiedAt": "2023-09-01T13:41:50.662Z", + "createdAt": "2023-09-01T13:26:10.475Z", + "lastModifiedAt": "2023-09-01T13:26:10.475Z", + "lastModifiedBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "createdBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "product": { + "typeId": "product", + "id": "daf720e5-9e8e-4300-98db-3a3219327db9" + }, + "store": { + "typeId": "store", + "key": "store-key" + }, + "current": { + "variants": [] + }, + "staged": { + "name": { + "en": "tailored name" + }, + "description": { + "en": "A description" + }, + "slug": { + "en": "tailored-slug" + }, + "variants": [] + }, + "published": false, + "hasStagedChanges": true +} diff --git a/api-specs/api/examples/product-tailoring.example.json b/api-specs/api/examples/product-tailoring.example.json new file mode 100644 index 0000000000..4a8528c98e --- /dev/null +++ b/api-specs/api/examples/product-tailoring.example.json @@ -0,0 +1,49 @@ +{ + "id": "207ee692-6002-4570-a78c-d15e7adbebbb", + "version": 2, + "versionModifiedAt": "2023-09-01T13:41:50.662Z", + "createdAt": "2023-09-01T13:26:10.475Z", + "lastModifiedAt": "2023-09-01T13:26:10.475Z", + "lastModifiedBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "createdBy": { + "clientId": "ywjliB_u26xzmcJNKznjbJp4", + "isPlatformClient": false + }, + "product": { + "typeId": "product", + "id": "daf720e5-9e8e-4300-98db-3a3219327db9" + }, + "store": { + "typeId": "store", + "key": "store-key" + }, + "current": { + "variants": [] + }, + "staged": { + "name": { + "en": "tailored name" + }, + "description": { + "en": "tailored description" + }, + "metaTitle": { + "en": "tailored meta title" + }, + "metaDescription": { + "en": "tailored meta description" + }, + "metaKeywords": { + "en": "tailored meta keywords" + }, + "slug": { + "en": "tailored-slug" + }, + "variants": [] + }, + "published": false, + "hasStagedChanges": true +} diff --git a/api-specs/api/examples/shipping-method-create.example.json b/api-specs/api/examples/shipping-method-create.example.json index 9fe14c46a9..664b44297e 100644 --- a/api-specs/api/examples/shipping-method-create.example.json +++ b/api-specs/api/examples/shipping-method-create.example.json @@ -1,6 +1,8 @@ { "name": "DHL", - "description": "Standard delivery", + "localizedDescription" : { + "en" : "Standard delivery" + }, "taxCategory": { "typeId": "tax-category", "id": "5a21f15b-34f8-4b7f-9407-d1eb82a73eba" diff --git a/api-specs/api/examples/shipping-method.example.json b/api-specs/api/examples/shipping-method.example.json index e63a1718a3..6f078e1046 100644 --- a/api-specs/api/examples/shipping-method.example.json +++ b/api-specs/api/examples/shipping-method.example.json @@ -2,7 +2,9 @@ "id": "eb8991df-2dcd-4e24-83fe-5df46ec04422", "version": 3, "name": "DHL", - "description": "Standard delivery", + "localizedDescription" : { + "en" : "Standard delivery" + }, "taxCategory": { "typeId": "tax-category", "id": "5a21f15b-34f8-4b7f-9407-d1eb82a73eba" diff --git a/api-specs/api/examples/shipping-methods.example.json b/api-specs/api/examples/shipping-methods.example.json index 86df863f9d..5a731f33e9 100644 --- a/api-specs/api/examples/shipping-methods.example.json +++ b/api-specs/api/examples/shipping-methods.example.json @@ -8,7 +8,9 @@ "id": "eb8991df-2dcd-4e24-83fe-5df46ec04422", "version": 3, "name": "DHL", - "description": "Standard delivery", + "localizedDescription" : { + "en" : "Standard delivery" + }, "taxCategory": { "typeId": "tax-category", "id": "5a21f15b-34f8-4b7f-9407-d1eb82a73eba" diff --git a/api-specs/api/resources/customers.raml b/api-specs/api/resources/customers.raml index eec264f900..f972f90b8c 100644 --- a/api-specs/api/resources/customers.raml +++ b/api-specs/api/resources/customers.raml @@ -28,7 +28,8 @@ post: description: | If the `anonymousCart` field is set on the [CustomerDraft](ctp:api:type:CustomerDraft), then the newly created Customer will be assigned to that [Cart](ctp:api:type:Cart). Similarly, if the `anonymousId` field is set, the Customer will be set on all [Carts](ctp:api:type:Cart), [Orders](ctp:api:type:Order), [ShoppingLists](ctp:api:type:ShoppingList) and [Payments](ctp:api:type:Payment) with the same `anonymousId`. - Creating a Customer produces the [CustomerCreated](ctp:api:type:CustomerCreatedMessage) Message. + + Creating a Customer produces the [CustomerCreated](ctp:api:type:CustomerCreatedMessage) Message. Simultaneously creating two Customers with the same email address can return a [LockedField](ctp:api:type:LockedFieldError) error. body: application/json: example: !include ../examples/customer-create.example.json @@ -170,6 +171,7 @@ post: description: Checks if a Customer exists for a given `key`. Returns a `200 OK` status if the Customer exists or a `404 Not Found` otherwise. post: securedBy: [oauth_2_0: { scopes: ['manage_customers:{projectKey}'] }] + description: Simultaneously updating two Customers with the same email address can return a [LockedField](ctp:api:type:LockedFieldError) error. body: application/json: example: !include ../examples/customer-update.example.json @@ -208,6 +210,7 @@ post: description: Checks if a Customer exists for a given `id`. Returns a `200 OK` status if the Customer exists or a `404 Not Found` otherwise. post: securedBy: [oauth_2_0: { scopes: ['manage_customers:{projectKey}'] }] + description: Simultaneously updating two Customers with the same email address can return a [LockedField](ctp:api:type:LockedFieldError) error. body: application/json: example: !include ../examples/customer-update.example.json diff --git a/api-specs/api/resources/discount-codes.raml b/api-specs/api/resources/discount-codes.raml index 0d78ac2d23..51eab06f3c 100644 --- a/api-specs/api/resources/discount-codes.raml +++ b/api-specs/api/resources/discount-codes.raml @@ -26,7 +26,10 @@ head: where?: type: QueryPredicate[] post: - description: 'Deprecated scope: `manage_orders:{projectKey}`' + description: | + Creating a Discount Code produces the [DiscountCodeCreated](ctp:api:type:DiscountCodeCreatedMessage) Message. + + Deprecated scope: `manage_orders:{projectKey}` securedBy: [oauth_2_0: { scopes: ['manage_discount_codes:{projectKey}'] }] body: application/json: @@ -68,8 +71,53 @@ post: delete: is: - dataErasure + description: | + Deleting a Discount Code produces the [DiscountCodeDeleted](ctp:api:type:DiscountCodeDeletedMessage) Message. + + Deprecated scope: `manage_orders:{projectKey}` + securedBy: [oauth_2_0: { scopes: ['manage_discount_codes:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/discount-code.example.json +/key={key}: + (methodName): withKey + type: + baseResource: + uriParameterName: key + resourceType: DiscountCode + resourceUpdateType: DiscountCodeUpdate + get: + description: 'Deprecated scope: `view_orders:{projectKey}`' + securedBy: [oauth_2_0: { scopes: [' view_discount_codes:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/discount-code.example.json + head: + securedBy: [oauth_2_0: { scopes: ['view_discount_codes:{projectKey}'] }] + description: Checks if a DiscountCode exists for a given `key`. Returns a `200 OK` status if the DiscountCode exists or a `404 Not Found` otherwise. + post: description: 'Deprecated scope: `manage_orders:{projectKey}`' securedBy: [oauth_2_0: { scopes: ['manage_discount_codes:{projectKey}'] }] + body: + application/json: + example: !include ../examples/discount-code-update.example.json + responses: + 200: + body: + application/json: + example: !include ../examples/discount-code.example.json + delete: + is: + - dataErasure + description: | + Deleting a Discount Code produces the [DiscountCodeDeleted](ctp:api:type:DiscountCodeDeletedMessage) Message. + + Deprecated scope: `manage_orders:{projectKey}` + securedBy: [oauth_2_0: { scopes: ['manage_discount_codes:{projectKey}'] }] responses: 200: body: diff --git a/api-specs/api/resources/in-store.raml b/api-specs/api/resources/in-store.raml index fd4a0f8c00..fa7fc6e24f 100644 --- a/api-specs/api/resources/in-store.raml +++ b/api-specs/api/resources/in-store.raml @@ -1458,7 +1458,8 @@ uriParameters: If the `anonymousCart` field is set on the [CustomerDraft](ctp:api:type:CustomerDraft), then the newly created Customer will be assigned to that [Cart](ctp:api:type:Cart). Similarly, if the `anonymousId` field is set, the Customer will be set on all [Carts](ctp:api:type:Cart), [Orders](ctp:api:type:Order), [ShoppingLists](ctp:api:type:ShoppingList) and [Payments](ctp:api:type:Payment) with the same `anonymousId`. If a Cart with a `store` field specified, the `store` field must reference the same [Store](ctp:api:type:Store) specified in the `{storeKey}` path parameter. - Creating a Customer produces the [CustomerCreated](ctp:api:type:CustomerCreatedMessage) Message. + + Creating a Customer produces the [CustomerCreated](ctp:api:type:CustomerCreatedMessage) Message. Simultaneously creating two Customers with the same email address can return a [LockedField](ctp:api:type:LockedFieldError) error. body: application/json: example: !include ../examples/customer-create.example.json @@ -1651,6 +1652,8 @@ uriParameters: displayName: Update customer by key in store description: | If the Customer exists in the Project but the `stores` field references a different Store, this method returns a [ResourceNotFound](ctp:api:type:ResourceNotFoundError) error. + + Simultaneously updating two Customers with the same email address can return a [LockedField](ctp:api:type:LockedFieldError) error. securedBy: - oauth_2_0: scopes: @@ -1714,6 +1717,8 @@ uriParameters: displayName: Update customer by id in store description: | If the Customer exists in the Project but the `stores` field references a different [Store](ctp:api:type:Store), this method returns a [ResourceNotFound](ctp:api:type:ResourceNotFoundError) error. + + Simultaneously updating two Customers with the same email address can return a [LockedField](ctp:api:type:LockedFieldError) error. securedBy: - oauth_2_0: scopes: @@ -1754,6 +1759,8 @@ uriParameters: description: | Authenticates a Customer associated with a [Store](ctp:api:type:Store). For more information, see [Global versus Store-specific Customers](/../api/customers-overview#global-versus-store-specific-customers). + Triggers [Cart merge during sign-in](/../api/customers-overview#cart-merge-during-sign-in). + If the Customer exists in the Project but the `stores` field references a different [Store](ctp:api:type:Store), this method returns an [InvalidCredentials](ctp:api:type:InvalidCredentialsError) error. securedBy: - oauth_2_0: @@ -2130,9 +2137,9 @@ uriParameters: }, ] description: | - Gets the current or staged representation of a [Product](ctp:api:type:Product) by its key from the specified [Store](ctp:api:type:Store). + Gets the current or staged representation of a [Product](ctp:api:type:Product) by its key in the specified [Store](ctp:api:type:Store). If the Store has defined some languages, countries, distribution, supply Channels, and/or Product Selection, - they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices) + they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices), and [inventory](ctp:api:type:ProductProjectionInventoryEntries). If [ProductSelection](ctp:api:type:ProductSelection) is used, it affects the [availability of the Product](/projects/stores#products-available-in-store) in the specified Store. @@ -2175,9 +2182,9 @@ uriParameters: }, ] description: | - Gets the current or staged representation of a [Product](ctp:api:type:Product) by its ID from the specified [Store](ctp:api:type:Store). + Gets the current or staged representation of a [Product](ctp:api:type:Product) by its ID in the specified [Store](ctp:api:type:Store). If the Store has defined some languages, countries, distribution, supply Channels, and/or Product Selection, - they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices) + they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices), and [inventory](ctp:api:type:ProductProjectionInventoryEntries). If [ProductSelection](ctp:api:type:ProductSelection) is used, it affects the [availability of the Product](/projects/stores#products-available-in-store) in the specified Store. @@ -2497,3 +2504,234 @@ uriParameters: application/json: type: CartDiscount example: !include ../examples/cart-discount.example.json +/product-tailoring: + type: + baseDomain: + resourceType: ProductTailoring + resourceQueryType: ProductTailoringPagedQueryResponse + resourceDraft: ProductTailoringInStoreDraft + resourceUpdateType: ProductTailoringUpdate + sortExample: createdAt asc + (updateable): ProductTailoring + (createable): ProductTailoringInStoreDraft + description: A Product Tailoring holds tailored data of Product in the Store. + get: + displayName: Query available product tailoring in store + is: + - expandable + - query: + whereExample: 'product(id in ("c89f4753-050d-44af-9411-0a941e745c6e"))' + securedBy: [oauth_2_0: { scopes: ['view_products:{projectKey}'] }] + description: | + Queries Product Tailoring in a specific [Store](ctp:api:type:Store). + + queryParameters: + limit: + type: number + format: int32 + maximum: 500 + required: false + description: | + Number of [results requested](/../api/general-concepts#limit). + offset: + type: number + format: int32 + required: false + description: | + Number of [elements skipped](/../api/general-concepts#offset). + withTotal: + type: boolean + default: true + required: false + description: | + By default, the response does not include the `total` field. Set to `true` to get the [total](/../api/general-concepts#total) number of query results included. + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring-list.example.json + type: ProductTailoringPagedQueryResponse + post: + displayName: Create Product Tailoring in store + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'manage_products:{projectKey}', + 'manage_products:{projectKey}:{storeKey}', + ], + }, + ] + description: | + Creates a [ProductTailoring](ctp:api:type:ProductTailoring) in the [Store](ctp:api:type:Store) specified by `storeKey`. + When using this endpoint the ProductTailoring's `store` field is always set to the [Store](ctp:api:type:Store) specified in the path parameter. + + Generates the [ProductTailoringCreated](ctp:api:type:ProductTailoringCreatedMessage) Message. + body: + application/json: + example: !include ../examples/product-tailoring-in-store-create.example.json + responses: + 201: + body: + application/json: + example: !include ../examples/product-tailoring.example.json + +/products: + /{productID}: + (methodName): withProductId + uriParameters: + productID: + type: string + description: | + `id` of the [Product](ctp:api:type:Product). + /product-tailoring: + type: + baseSubResource: + resourceType: ProductTailoring + resourceUpdateType: ProductTailoringUpdate + get: + displayName: Gets the current or staged representation of a Product Tailoring by its Product ID from a specific Store + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'view_products:{projectKey}', + 'view_products:{projectKey}:{storeKey}', + ], + }, + ] + description: | + Gets the current or staged representation of a [Product Tailoring](ctp:api:type:ProductTailoring) by its Product ID in the specified [Store](ctp:api:type:Store). + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring.example.json + type: ProductTailoring + post: + displayName: Update a Product Tailoring by its Product ID from a specific Store + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'manage_products:{projectKey}', + 'manage_products:{projectKey}:{storeKey}', + ], + }, + ] + description: | + Updates the current or staged representation of a [Product Tailoring](ctp:api:type:ProductTailoring) by its Product ID in the specified [Store](ctp:api:type:Store). + body: + application/json: + example: !include ../examples/product-tailoring-update.example.json + responses: + 200: + body: + application/json: + type: ProductTailoring + example: !include ../examples/product-tailoring-updated.example.json + delete: + displayName: Delete a Product Tailoring by its Product ID from a specific Store + description: | + Generates the [ProductTailoringDeleted](ctp:api:type:ProductTailoringDeletedMessage) Message. + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'manage_products:{projectKey}', + 'manage_products:{projectKey}:{storeKey}', + ], + }, + ] + responses: + 200: + body: + application/json: + type: ProductTailoring + example: !include ../examples/product-tailoring.example.json + /key={productKey}: + (methodName): withProductKey + uriParameters: + productKey: + type: string + description: | + `key` of the [Product](ctp:api:type:Product). + /product-tailoring: + type: + baseSubResource: + resourceType: ProductTailoring + resourceUpdateType: ProductTailoringUpdate + get: + displayName: Gets the current or staged representation of a Product Tailoring by its Product key from a specific Store + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'view_products:{projectKey}', + 'view_products:{projectKey}:{storeKey}', + ], + }, + ] + description: | + Gets the current or staged representation of a [Product Tailoring](ctp:api:type:ProductTailoring) by its Product key in the specified [Store](ctp:api:type:Store). + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring.example.json + type: ProductTailoring + post: + displayName: Update a Product Tailoring by its Product key from a specific Store + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'manage_products:{projectKey}', + 'manage_products:{projectKey}:{storeKey}', + ], + }, + ] + description: | + Updates the current or staged representation of a [Product Tailoring](ctp:api:type:ProductTailoring) by its Product key in the specified [Store](ctp:api:type:Store). + body: + application/json: + example: !include ../examples/product-tailoring-update.example.json + responses: + 200: + body: + application/json: + type: ProductTailoring + example: !include ../examples/product-tailoring-updated.example.json + delete: + displayName: Delete a Product Tailoring by its Product key from a specific Store + description: | + Generates the [ProductTailoringDeleted](ctp:api:type:ProductTailoringDeletedMessage) Message. + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'manage_products:{projectKey}', + 'manage_products:{projectKey}:{storeKey}', + ], + }, + ] + responses: + 200: + body: + application/json: + type: ProductTailoring + example: !include ../examples/product-tailoring.example.json diff --git a/api-specs/api/resources/login.raml b/api-specs/api/resources/login.raml index 1e47c85c5e..7b16bd67fe 100644 --- a/api-specs/api/resources/login.raml +++ b/api-specs/api/resources/login.raml @@ -8,6 +8,8 @@ post: For more information, see [Global versus Store-specific Customers](/../api/customers-overview#global-versus-store-specific-customers). If the Customer is registered in a Store, use the [Authenticate (sign in) Customer in Store](ctp:api:endpoint:/{projectKey}/in-store/key={storeKey}/login:POST) method. + Triggers [Cart merge during sign-in](/../api/customers-overview#cart-merge-during-sign-in). + If an account with the given credentials is not found, an [InvalidCredentials](ctp:api:type:InvalidCredentialsError) error is returned. securedBy: [oauth_2_0: { scopes: ['manage_customers:{projectKey}'] }] body: diff --git a/api-specs/api/resources/product-tailoring.raml b/api-specs/api/resources/product-tailoring.raml new file mode 100644 index 0000000000..f455ef369a --- /dev/null +++ b/api-specs/api/resources/product-tailoring.raml @@ -0,0 +1,97 @@ +type: + baseDomain: + resourceType: ProductTailoring + resourceQueryType: ProductTailoringPagedQueryResponse + resourceDraft: ProductTailoringDraft + whereExample: 'store(key = "store-one")' + sortExample: createdAt asc +(updateable): ProductTailoring +(deleteable): ProductTailoring +(createable): ProductTailoringDraft +description: Product tailoring are used to contextualize product data for specific stores. +get: + securedBy: [oauth_2_0: { scopes: ['view_products:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring-list.example.json +post: + description: | + Generates the [ProductTailoringCreated](ctp:api:type:ProductTailoringCreatedMessage) Message. + securedBy: [oauth_2_0: { scopes: ['manage_products:{projectKey}'] }] + body: + application/json: + example: !include ../examples/product-tailoring-create.example.json + responses: + 201: + body: + application/json: + example: !include ../examples/product-tailoring.example.json + +/key={key}: + (methodName): withKey + type: + baseResource: + uriParameterName: key + resourceType: ProductTailoring + resourceUpdateType: ProductTailoringUpdate + get: + securedBy: [oauth_2_0: { scopes: ['view_products:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring.example.json + post: + securedBy: [oauth_2_0: { scopes: ['manage_products:{projectKey}'] }] + body: + application/json: + example: !include ../examples/product-tailoring-update.example.json + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring-updated.example.json + delete: + description: | + Generates the [ProductTailoringDeleted](ctp:api:type:ProductTailoringDeletedMessage) Message. + securedBy: [oauth_2_0: { scopes: ['manage_products:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring.example.json +/{ID}: + (methodName): withId + type: + baseResource: + uriParameterName: ID + resourceType: ProductTailoring + resourceUpdateType: ProductTailoringUpdate + get: + securedBy: [oauth_2_0: { scopes: ['view_products:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring.example.json + post: + securedBy: [oauth_2_0: { scopes: ['manage_products:{projectKey}'] }] + body: + application/json: + example: !include ../examples/product-tailoring-update.example.json + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring-updated.example.json + delete: + description: | + Generates the [ProductTailoringDeleted](ctp:api:type:ProductTailoringDeletedMessage) Message. + securedBy: [oauth_2_0: { scopes: ['manage_products:{projectKey}'] }] + responses: + 200: + body: + application/json: + example: !include ../examples/product-tailoring.example.json diff --git a/api-specs/api/resources/products.raml b/api-specs/api/resources/products.raml index 07cfe64a56..65318d56b2 100644 --- a/api-specs/api/resources/products.raml +++ b/api-specs/api/resources/products.raml @@ -11,7 +11,17 @@ type: description: | Products themselves are not sellable. Instead, they act as a parent structure for sellable Product Variants. get: - securedBy: [oauth_2_0: { scopes: ['view_products:{projectKey}'] }] + securedBy: + [ + oauth_2_0: + { + scopes: + [ + 'view_products:{projectKey}', + 'view_published_products:{projectKey}', + ], + }, + ] is: - priceSelecting description: |- @@ -212,3 +222,20 @@ post: body: application/json: example: !include ../examples/product-assigned-selections.example.json +/search: + type: base + displayName: Product Search + description: | + This endpoint provides high-performance search queries over Products. Product Search allows searching through all products with a current projection in your Project. + post: + displayName: Search Products + securedBy: [oauth_2_0: { scopes: ['view_published_products:{projectKey}'] }] + body: + application/json: + type: ProductSearchRequest + responses: + 200: + body: + application/json: + example: !include ../examples/ProductSearch/product-search-response.example.json + type: ProductPagedSearchResponse diff --git a/api-specs/api/resources/subscriptions.raml b/api-specs/api/resources/subscriptions.raml index a9f0dc1df3..e760e63784 100644 --- a/api-specs/api/resources/subscriptions.raml +++ b/api-specs/api/resources/subscriptions.raml @@ -151,7 +151,7 @@ post: Healthy 400: description: | - ConfigurationError and ConfigurationErrorDeliveryStopped + ConfigurationError, ConfigurationErrorDeliveryStopped, ManuallySuspended 503: description: | TemporaryError diff --git a/api-specs/api/ruleset.xml b/api-specs/api/ruleset.xml index 03d162e9b0..05b9e91688 100644 --- a/api-specs/api/ruleset.xml +++ b/api-specs/api/ruleset.xml @@ -32,6 +32,7 @@ + @@ -53,6 +54,7 @@ + @@ -65,6 +67,7 @@ + @@ -104,6 +107,9 @@ com.commercetools.rmf.validators.DatetimeRule + + com.commercetools.rmf.validators.PolymorphicSubtypesRule + com.commercetools.rmf.validators.CamelCaseRule diff --git a/api-specs/api/traits/store-projecting.raml b/api-specs/api/traits/store-projecting.raml index 976d2a26ae..e7aa8ad0f2 100644 --- a/api-specs/api/traits/store-projecting.raml +++ b/api-specs/api/traits/store-projecting.raml @@ -7,6 +7,6 @@ queryParameters: description: | `key` of an existing [Store](ctp:api:type:Store). If the Store has defined some languages, countries, distribution or supply Channels, - they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices) + they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices), and [inventory](ctp:api:type:ProductProjectionInventoryEntries). If the Store has defined [Product Selections](ctp:api:type:ProductSelection), they have no effect on the results of this query. diff --git a/api-specs/api/types/annotations.raml b/api-specs/api/types/annotations.raml index 0ba48f5333..11816d73d1 100644 --- a/api-specs/api/types/annotations.raml +++ b/api-specs/api/types/annotations.raml @@ -4,6 +4,9 @@ package: identifier: type: boolean allowedTargets: TypeDeclaration +ignoreValidators: + type: string[] + allowedTargets: TypeDeclaration elementIdentifier: type: boolean allowedTargets: TypeDeclaration @@ -14,8 +17,6 @@ placeholderParam: paramName: string template: string placeholder: string -docs-uri: - type: string updateType: type: string allowedTargets: TypeDeclaration diff --git a/api-specs/api/types/api-client/ApiClient.raml b/api-specs/api/types/api-client/ApiClient.raml index 2318d7cd28..85e9b8bed4 100644 --- a/api-specs/api/types/api-client/ApiClient.raml +++ b/api-specs/api/types/api-client/ApiClient.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApiClient -(docs-uri): https://docs.commercetools.com/api/projects/api-clients#apiclient displayName: ApiClient type: object properties: @@ -30,7 +29,7 @@ properties: time. createdAt?: type: datetime - description: Date and time (UTC) the APIClient was initially created at. + description: Date and time (UTC) the APIClient was initially created. accessTokenValiditySeconds?: type: number format: int32 diff --git a/api-specs/api/types/api-client/ApiClientDraft.raml b/api-specs/api/types/api-client/ApiClientDraft.raml index a4aa3e08fe..ab8548678b 100644 --- a/api-specs/api/types/api-client/ApiClientDraft.raml +++ b/api-specs/api/types/api-client/ApiClientDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApiClient -(docs-uri): https://docs.commercetools.com/api/projects/api-clients#apiclientdraft displayName: ApiClientDraft type: object properties: diff --git a/api-specs/api/types/approval-flow/ApprovalFlow.raml b/api-specs/api/types/approval-flow/ApprovalFlow.raml index 5b52db7dd3..d511f38646 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlow.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlow.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#approvalflow type: BaseResource displayName: ApprovalFlow properties: @@ -22,7 +21,7 @@ properties: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/general-concepts#events-tracked). + IDs and references that created the ApprovalFlow. lastModifiedAt: type: datetime description: | @@ -31,7 +30,7 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/general-concepts#events-tracked). + IDs and references that last modified the ApprovalFlow. order: type: OrderReference description: | diff --git a/api-specs/api/types/approval-flow/ApprovalFlowApproval.raml b/api-specs/api/types/approval-flow/ApprovalFlowApproval.raml index 5710026409..ec43f48dfb 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowApproval.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowApproval.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#approvalflowapproval displayName: ApprovalFlowApproval type: object properties: @@ -10,5 +9,5 @@ properties: type: Associate approvedAt: description: | - Date and time (UTC) when the [Approval Flow](ctp:api:type:ApprovalFlow) was approved at. + Date and time (UTC) the [Approval Flow](ctp:api:type:ApprovalFlow) was approved. type: datetime diff --git a/api-specs/api/types/approval-flow/ApprovalFlowApproveAction.raml b/api-specs/api/types/approval-flow/ApprovalFlowApproveAction.raml index bf118c0fa2..9ddeebf9cc 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowApproveAction.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowApproveAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#approve type: ApprovalFlowUpdateAction displayName: ApprovalFlowApproveAction discriminatorValue: approve diff --git a/api-specs/api/types/approval-flow/ApprovalFlowRejectAction.raml b/api-specs/api/types/approval-flow/ApprovalFlowRejectAction.raml index 11a5acdb93..4838fed181 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowRejectAction.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowRejectAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#reject type: ApprovalFlowUpdateAction displayName: ApprovalFlowRejectAction discriminatorValue: reject diff --git a/api-specs/api/types/approval-flow/ApprovalFlowRejection.raml b/api-specs/api/types/approval-flow/ApprovalFlowRejection.raml index f23b51321e..f56032f0b4 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowRejection.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowRejection.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#approvalflowrejection displayName: ApprovalFlowRejection type: object properties: @@ -10,7 +9,7 @@ properties: type: Associate rejectedAt: description: | - Date and time (UTC) when the [Approval Flow](ctp:api:type:ApprovalFlow) was rejected at. + Date and time (UTC) the [Approval Flow](ctp:api:type:ApprovalFlow) was rejected. type: datetime reason?: description: | diff --git a/api-specs/api/types/approval-flow/ApprovalFlowSetCustomFieldAction.raml b/api-specs/api/types/approval-flow/ApprovalFlowSetCustomFieldAction.raml index 9315a57db4..4ee17943d1 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowSetCustomFieldAction.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#set-custom-field type: ApprovalFlowUpdateAction displayName: ApprovalFlowSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/approval-flow/ApprovalFlowSetCustomTypeAction.raml b/api-specs/api/types/approval-flow/ApprovalFlowSetCustomTypeAction.raml index aae675d483..30dd1e305f 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowSetCustomTypeAction.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#set-custom-type type: ApprovalFlowUpdateAction displayName: ApprovalFlowSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/approval-flow/ApprovalFlowStatus.raml b/api-specs/api/types/approval-flow/ApprovalFlowStatus.raml index b6353fe9fc..41e30ea31f 100644 --- a/api-specs/api/types/approval-flow/ApprovalFlowStatus.raml +++ b/api-specs/api/types/approval-flow/ApprovalFlowStatus.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalFlow -(docs-uri): https://docs.commercetools.com/api/projects/approvalflows#approvalflowstatus displayName: ApprovalFlowStatus type: string description: | diff --git a/api-specs/api/types/approval-rule/ApprovalRule.raml b/api-specs/api/types/approval-rule/ApprovalRule.raml index a5b310619f..3f8925c453 100644 --- a/api-specs/api/types/approval-rule/ApprovalRule.raml +++ b/api-specs/api/types/approval-rule/ApprovalRule.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approvalrule type: BaseResource displayName: ApprovalRule properties: @@ -22,7 +21,7 @@ properties: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/general-concepts#events-tracked). + IDs and references that created the ApprovalRule. lastModifiedAt: type: datetime description: | @@ -31,7 +30,7 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/general-concepts#events-tracked). + IDs and references that last modified the ApprovalRule. key?: type: string description: | diff --git a/api-specs/api/types/approval-rule/ApprovalRuleDraft.raml b/api-specs/api/types/approval-rule/ApprovalRuleDraft.raml index 234fdafd9c..d168d1277f 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleDraft.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approvalruledraft type: object displayName: ApprovalRuleDraft properties: diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetApproversAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetApproversAction.raml index 2b949e3cb5..63d0af9f7f 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetApproversAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetApproversAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-approvers type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetApproversAction discriminatorValue: setApprovers diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetDescriptionAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetDescriptionAction.raml index fbd53cea57..f6b1c94705 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetDescriptionAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-description type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetKeyAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetKeyAction.raml index 0b347bbddf..6e86a147f4 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetKeyAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-key type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetNameAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetNameAction.raml index 10e36c3590..705b0369e1 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetNameAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-name type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetNameAction discriminatorValue: setName diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetPredicateAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetPredicateAction.raml index bc065eac91..df2d4293c4 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetPredicateAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetPredicateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-predicate type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetPredicateAction discriminatorValue: setPredicate diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetRequestersAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetRequestersAction.raml index 3a8dd0beb7..5ae3bc9aa1 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetRequestersAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetRequestersAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-requesters type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetRequestersAction discriminatorValue: setRequesters diff --git a/api-specs/api/types/approval-rule/ApprovalRuleSetStatusAction.raml b/api-specs/api/types/approval-rule/ApprovalRuleSetStatusAction.raml index 90c8224583..f4bf7d33a8 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleSetStatusAction.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleSetStatusAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#set-status type: ApprovalRuleUpdateAction displayName: ApprovalRuleSetStatusAction discriminatorValue: setStatus diff --git a/api-specs/api/types/approval-rule/ApprovalRuleStatus.raml b/api-specs/api/types/approval-rule/ApprovalRuleStatus.raml index 723d8fe1f5..6afe2ad08b 100644 --- a/api-specs/api/types/approval-rule/ApprovalRuleStatus.raml +++ b/api-specs/api/types/approval-rule/ApprovalRuleStatus.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approvalrulestatus displayName: ApprovalRuleStatus type: string description: | diff --git a/api-specs/api/types/approval-rule/ApproverConjunction.raml b/api-specs/api/types/approval-rule/ApproverConjunction.raml index 46480d0dc5..dd17eaead6 100644 --- a/api-specs/api/types/approval-rule/ApproverConjunction.raml +++ b/api-specs/api/types/approval-rule/ApproverConjunction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approverconjunction displayName: ApproverConjunction type: object properties: diff --git a/api-specs/api/types/approval-rule/ApproverConjunctionDraft.raml b/api-specs/api/types/approval-rule/ApproverConjunctionDraft.raml index f5551915aa..fe670673f7 100644 --- a/api-specs/api/types/approval-rule/ApproverConjunctionDraft.raml +++ b/api-specs/api/types/approval-rule/ApproverConjunctionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approverconjunctiondraft displayName: ApproverConjunctionDraft type: object properties: diff --git a/api-specs/api/types/approval-rule/ApproverDisjunction.raml b/api-specs/api/types/approval-rule/ApproverDisjunction.raml index 1baf05d2a4..4e3b4c04c8 100644 --- a/api-specs/api/types/approval-rule/ApproverDisjunction.raml +++ b/api-specs/api/types/approval-rule/ApproverDisjunction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approverdisjunction displayName: ApproverDisjunction type: object properties: diff --git a/api-specs/api/types/approval-rule/ApproverDisjunctionDraft.raml b/api-specs/api/types/approval-rule/ApproverDisjunctionDraft.raml index 97be0582e9..6602dbb9c7 100644 --- a/api-specs/api/types/approval-rule/ApproverDisjunctionDraft.raml +++ b/api-specs/api/types/approval-rule/ApproverDisjunctionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approverdisjunctiondraft displayName: ApproverDisjunctionDraft type: object properties: diff --git a/api-specs/api/types/approval-rule/ApproverHierarchy.raml b/api-specs/api/types/approval-rule/ApproverHierarchy.raml index d030efe671..dff8cc051c 100644 --- a/api-specs/api/types/approval-rule/ApproverHierarchy.raml +++ b/api-specs/api/types/approval-rule/ApproverHierarchy.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approverhierarchy displayName: ApproverHierarchy type: object description: | diff --git a/api-specs/api/types/approval-rule/ApproverHierarchyDraft.raml b/api-specs/api/types/approval-rule/ApproverHierarchyDraft.raml index a516763d13..8c01eddc54 100644 --- a/api-specs/api/types/approval-rule/ApproverHierarchyDraft.raml +++ b/api-specs/api/types/approval-rule/ApproverHierarchyDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#approverhierarchydraft displayName: ApproverHierarchyDraft type: object description: | diff --git a/api-specs/api/types/approval-rule/RuleApprover.raml b/api-specs/api/types/approval-rule/RuleApprover.raml index 5cba1dfef8..08fe8ad27f 100644 --- a/api-specs/api/types/approval-rule/RuleApprover.raml +++ b/api-specs/api/types/approval-rule/RuleApprover.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#ruleapprover displayName: RuleApprover type: object properties: diff --git a/api-specs/api/types/approval-rule/RuleApproverDraft.raml b/api-specs/api/types/approval-rule/RuleApproverDraft.raml index bd278bb028..66766ab5dc 100644 --- a/api-specs/api/types/approval-rule/RuleApproverDraft.raml +++ b/api-specs/api/types/approval-rule/RuleApproverDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#ruleapproverdraft displayName: RuleApproverDraft type: object properties: diff --git a/api-specs/api/types/approval-rule/RuleRequester.raml b/api-specs/api/types/approval-rule/RuleRequester.raml index eb6dbb2420..86b766255d 100644 --- a/api-specs/api/types/approval-rule/RuleRequester.raml +++ b/api-specs/api/types/approval-rule/RuleRequester.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#rulerequester displayName: RuleRequester type: object properties: diff --git a/api-specs/api/types/approval-rule/RuleRequesterDraft.raml b/api-specs/api/types/approval-rule/RuleRequesterDraft.raml index 28d37e60f9..20f0255876 100644 --- a/api-specs/api/types/approval-rule/RuleRequesterDraft.raml +++ b/api-specs/api/types/approval-rule/RuleRequesterDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ApprovalRule -(docs-uri): https://docs.commercetools.com/api/projects/approvalrules#rulerequesterdraft displayName: RuleRequesterDraft type: object properties: diff --git a/api-specs/api/types/associate-role/AssociateRole.raml b/api-specs/api/types/associate-role/AssociateRole.raml index da158c9700..230b5060aa 100644 --- a/api-specs/api/types/associate-role/AssociateRole.raml +++ b/api-specs/api/types/associate-role/AssociateRole.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#associaterole displayName: AssociateRole (updateType): AssociateRoleUpdate type: BaseResource @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the AssociateRole. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the AssociateRole. key: type: string description: | diff --git a/api-specs/api/types/associate-role/AssociateRoleDraft.raml b/api-specs/api/types/associate-role/AssociateRoleDraft.raml index 2c8b129c7c..ddc35a2213 100644 --- a/api-specs/api/types/associate-role/AssociateRoleDraft.raml +++ b/api-specs/api/types/associate-role/AssociateRoleDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#associateroledraft displayName: AssociateRoleDraft description: | properties: diff --git a/api-specs/api/types/associate-role/AssociateRoleKeyReference.raml b/api-specs/api/types/associate-role/AssociateRoleKeyReference.raml index 306c7d9a52..f93e7205cf 100644 --- a/api-specs/api/types/associate-role/AssociateRoleKeyReference.raml +++ b/api-specs/api/types/associate-role/AssociateRoleKeyReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#associaterolekeyreference displayName: AssociateRoleKeyReference type: KeyReference discriminatorValue: associate-role description: | - [Reference](ctp:api:type:TypeReference) to an [AssociateRole](ctp:api:type:AssociateRole) by its key. + [Reference](ctp:api:type:Reference) to an [AssociateRole](ctp:api:type:AssociateRole) by its key. properties: key: type: string diff --git a/api-specs/api/types/associate-role/AssociateRoleReference.raml b/api-specs/api/types/associate-role/AssociateRoleReference.raml index 933c8c9ada..77b5fa90da 100644 --- a/api-specs/api/types/associate-role/AssociateRoleReference.raml +++ b/api-specs/api/types/associate-role/AssociateRoleReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#associaterolereference type: Reference displayName: AssociateRoleReference discriminatorValue: associate-role description: | - [Reference](ctp:api:type:TypeReference) to an [AssociateRole](ctp:api:type:AssociateRole). + [Reference](ctp:api:type:Reference) to an [AssociateRole](ctp:api:type:AssociateRole). properties: obj?: type: AssociateRole diff --git a/api-specs/api/types/associate-role/AssociateRoleResourceIdentifier.raml b/api-specs/api/types/associate-role/AssociateRoleResourceIdentifier.raml index 19b0659a82..1531edcabd 100644 --- a/api-specs/api/types/associate-role/AssociateRoleResourceIdentifier.raml +++ b/api-specs/api/types/associate-role/AssociateRoleResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#associateroleresourceidentifier type: ResourceIdentifier displayName: AssociateRoleResourceIdentifier discriminatorValue: associate-role diff --git a/api-specs/api/types/associate-role/Permission.raml b/api-specs/api/types/associate-role/Permission.raml index b95e7a087b..9806bded7b 100644 --- a/api-specs/api/types/associate-role/Permission.raml +++ b/api-specs/api/types/associate-role/Permission.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#permission displayName: Permission type: string description: | diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleAddPermissionAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleAddPermissionAction.raml index 8a21998761..d026888278 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleAddPermissionAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleAddPermissionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#add-permission type: AssociateRoleUpdateAction displayName: AssociateRoleAddPermissionAction discriminatorValue: addPermission diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleChangeBuyerAssignableAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleChangeBuyerAssignableAction.raml index 1710ff9b21..26b9159aec 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleChangeBuyerAssignableAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleChangeBuyerAssignableAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#change-buyer-assignable type: AssociateRoleUpdateAction displayName: AssociateRoleChangeBuyerAssignableAction discriminatorValue: changeBuyerAssignable diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleRemovePermissionAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleRemovePermissionAction.raml index 88fdb99d15..afa7600f3d 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleRemovePermissionAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleRemovePermissionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#remove-permission type: AssociateRoleUpdateAction displayName: AssociateRoleRemovePermissionAction discriminatorValue: removePermission diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomFieldAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomFieldAction.raml index a5b4320593..676fc6f55a 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomFieldAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#set-customfield type: AssociateRoleUpdateAction displayName: AssociateRoleSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomTypeAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomTypeAction.raml index 8ad2480bff..eb44ee6269 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomTypeAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#set-custom-type type: AssociateRoleUpdateAction displayName: AssociateRoleSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleSetNameAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleSetNameAction.raml index 087fee72d4..1cd4c7d3ef 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleSetNameAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleSetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#set-name type: AssociateRoleUpdateAction displayName: AssociateRoleSetNameAction discriminatorValue: setName diff --git a/api-specs/api/types/associate-role/updates/AssociateRoleSetPermissionsAction.raml b/api-specs/api/types/associate-role/updates/AssociateRoleSetPermissionsAction.raml index 0a0574380f..377a0c3f8a 100644 --- a/api-specs/api/types/associate-role/updates/AssociateRoleSetPermissionsAction.raml +++ b/api-specs/api/types/associate-role/updates/AssociateRoleSetPermissionsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AssociateRole -(docs-uri): https://docs.commercetools.com/api/projects/associate-roles#set-permissions type: AssociateRoleUpdateAction displayName: AssociateRoleSetPermissionsAction discriminatorValue: setPermissions diff --git a/api-specs/api/types/attribute-group/AttributeGroup.raml b/api-specs/api/types/attribute-group/AttributeGroup.raml index 20d70406e4..0029c91b56 100644 --- a/api-specs/api/types/attribute-group/AttributeGroup.raml +++ b/api-specs/api/types/attribute-group/AttributeGroup.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#attributegroup displayName: AttributeGroup (updateType): AttributeGroupUpdate type: BaseResource @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the AttributeGroup. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the AttributeGroup. name: type: LocalizedString description: | diff --git a/api-specs/api/types/attribute-group/AttributeGroupDraft.raml b/api-specs/api/types/attribute-group/AttributeGroupDraft.raml index 7e30ed53ec..ad242f6af8 100644 --- a/api-specs/api/types/attribute-group/AttributeGroupDraft.raml +++ b/api-specs/api/types/attribute-group/AttributeGroupDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#attributegroupdraft displayName: AttributeGroupDraft type: object properties: diff --git a/api-specs/api/types/attribute-group/AttributeGroupPagedQueryResponse.raml b/api-specs/api/types/attribute-group/AttributeGroupPagedQueryResponse.raml index a94f2b74ab..27b6b1cd08 100644 --- a/api-specs/api/types/attribute-group/AttributeGroupPagedQueryResponse.raml +++ b/api-specs/api/types/attribute-group/AttributeGroupPagedQueryResponse.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#attributegrouppagedqueryresponse displayName: AttributeGroupPagedQueryResponse type: object description: | diff --git a/api-specs/api/types/attribute-group/AttributeGroupReference.raml b/api-specs/api/types/attribute-group/AttributeGroupReference.raml index b40bd5cb5f..73d1563a5a 100644 --- a/api-specs/api/types/attribute-group/AttributeGroupReference.raml +++ b/api-specs/api/types/attribute-group/AttributeGroupReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#attributegroupreference type: Reference displayName: AttributeGroupReference discriminatorValue: attribute-group description: | - [Reference](/../api/types#reference) to an [AttributeGroup](ctp:api:type:AttributeGroup). + [Reference](ctp:api:type:Reference) to an [AttributeGroup](ctp:api:type:AttributeGroup). properties: obj?: type: AttributeGroup diff --git a/api-specs/api/types/attribute-group/AttributeGroupResourceIdentifier.raml b/api-specs/api/types/attribute-group/AttributeGroupResourceIdentifier.raml index 720ff313d8..765f6a8442 100644 --- a/api-specs/api/types/attribute-group/AttributeGroupResourceIdentifier.raml +++ b/api-specs/api/types/attribute-group/AttributeGroupResourceIdentifier.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#attributegroupresourceidentifier type: ResourceIdentifier displayName: AttributeGroupResourceIdentifier discriminatorValue: attribute-group description: | - [ResourceIdentifier](/../api/types#resourceidentifier) to an [AttributeGroup](ctp:api:type:AttributeGroup). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/../api/errors#invalidjsoninput) error is returned. + [ResourceIdentifier](ctp:api:type:ResourceIdentifier) to an [AttributeGroup](ctp:api:type:AttributeGroup). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/../api/errors#invalidjsoninput) error is returned. properties: id?: type: string diff --git a/api-specs/api/types/attribute-group/AttributeReference.raml b/api-specs/api/types/attribute-group/AttributeReference.raml index 1fae4a85d9..47823d41f8 100644 --- a/api-specs/api/types/attribute-group/AttributeReference.raml +++ b/api-specs/api/types/attribute-group/AttributeReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#attributereference displayName: AttributeReference type: object properties: diff --git a/api-specs/api/types/attribute-group/updates/AttributeGroupAddAttributeAction.raml b/api-specs/api/types/attribute-group/updates/AttributeGroupAddAttributeAction.raml index 2e56ff6429..4be5123b4b 100644 --- a/api-specs/api/types/attribute-group/updates/AttributeGroupAddAttributeAction.raml +++ b/api-specs/api/types/attribute-group/updates/AttributeGroupAddAttributeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#addattribute type: AttributeGroupUpdateAction displayName: AttributeGroupAddAttributeAction discriminatorValue: addAttribute diff --git a/api-specs/api/types/attribute-group/updates/AttributeGroupChangeNameAction.raml b/api-specs/api/types/attribute-group/updates/AttributeGroupChangeNameAction.raml index 0fdf33b2f1..92e4f7a38c 100644 --- a/api-specs/api/types/attribute-group/updates/AttributeGroupChangeNameAction.raml +++ b/api-specs/api/types/attribute-group/updates/AttributeGroupChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#changename type: AttributeGroupUpdateAction displayName: AttributeGroupChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/attribute-group/updates/AttributeGroupRemoveAttributeAction.raml b/api-specs/api/types/attribute-group/updates/AttributeGroupRemoveAttributeAction.raml index 43fb754a84..366e869f35 100644 --- a/api-specs/api/types/attribute-group/updates/AttributeGroupRemoveAttributeAction.raml +++ b/api-specs/api/types/attribute-group/updates/AttributeGroupRemoveAttributeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#removeattribute type: AttributeGroupUpdateAction displayName: AttributeGroupRemoveAttributeAction discriminatorValue: removeAttribute diff --git a/api-specs/api/types/attribute-group/updates/AttributeGroupSetAttributesAction.raml b/api-specs/api/types/attribute-group/updates/AttributeGroupSetAttributesAction.raml index 254a25a635..4c8a9a542f 100644 --- a/api-specs/api/types/attribute-group/updates/AttributeGroupSetAttributesAction.raml +++ b/api-specs/api/types/attribute-group/updates/AttributeGroupSetAttributesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#setattributes type: AttributeGroupUpdateAction displayName: AttributeGroupSetAttributesAction discriminatorValue: setAttributes diff --git a/api-specs/api/types/attribute-group/updates/AttributeGroupSetDescriptionAction.raml b/api-specs/api/types/attribute-group/updates/AttributeGroupSetDescriptionAction.raml index a7179d33f3..bb4a9dfcec 100644 --- a/api-specs/api/types/attribute-group/updates/AttributeGroupSetDescriptionAction.raml +++ b/api-specs/api/types/attribute-group/updates/AttributeGroupSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#setdescription type: AttributeGroupUpdateAction displayName: AttributeGroupSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/attribute-group/updates/AttributeGroupSetKeyAction.raml b/api-specs/api/types/attribute-group/updates/AttributeGroupSetKeyAction.raml index af682defaf..04366e556c 100644 --- a/api-specs/api/types/attribute-group/updates/AttributeGroupSetKeyAction.raml +++ b/api-specs/api/types/attribute-group/updates/AttributeGroupSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): AttributeGroup -(docs-uri): https://docs.commercetools.com/api/projects/attribute-groups#setkey type: AttributeGroupUpdateAction displayName: AttributeGroupSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/business-unit/Associate.raml b/api-specs/api/types/business-unit/Associate.raml index aff0b94288..444065b138 100644 --- a/api-specs/api/types/business-unit/Associate.raml +++ b/api-specs/api/types/business-unit/Associate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associate displayName: Associate properties: associateRoleAssignments: diff --git a/api-specs/api/types/business-unit/AssociateDraft.raml b/api-specs/api/types/business-unit/AssociateDraft.raml index 2bf5619b52..9b9ea013e2 100644 --- a/api-specs/api/types/business-unit/AssociateDraft.raml +++ b/api-specs/api/types/business-unit/AssociateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associatedraft displayName: AssociateDraft properties: associateRoleAssignments: diff --git a/api-specs/api/types/business-unit/AssociateRoleAssignment.raml b/api-specs/api/types/business-unit/AssociateRoleAssignment.raml index e279932773..e7341d339f 100644 --- a/api-specs/api/types/business-unit/AssociateRoleAssignment.raml +++ b/api-specs/api/types/business-unit/AssociateRoleAssignment.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associateroleassignment displayName: AssociateRoleAssignment properties: associateRole: diff --git a/api-specs/api/types/business-unit/AssociateRoleAssignmentDraft.raml b/api-specs/api/types/business-unit/AssociateRoleAssignmentDraft.raml index be2fe3fbd2..5335a9496a 100644 --- a/api-specs/api/types/business-unit/AssociateRoleAssignmentDraft.raml +++ b/api-specs/api/types/business-unit/AssociateRoleAssignmentDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associateroleassignmentdraft displayName: AssociateRoleAssignmentDraft properties: associateRole: diff --git a/api-specs/api/types/business-unit/AssociateRoleDeprecated.raml b/api-specs/api/types/business-unit/AssociateRoleDeprecated.raml index 554e87b369..b3c2563b8d 100644 --- a/api-specs/api/types/business-unit/AssociateRoleDeprecated.raml +++ b/api-specs/api/types/business-unit/AssociateRoleDeprecated.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associateroledeprecated displayName: AssociateRoleDeprecated type: string (deprecated): true diff --git a/api-specs/api/types/business-unit/AssociateRoleInheritanceMode.raml b/api-specs/api/types/business-unit/AssociateRoleInheritanceMode.raml index 2930d24005..16f9e3304f 100644 --- a/api-specs/api/types/business-unit/AssociateRoleInheritanceMode.raml +++ b/api-specs/api/types/business-unit/AssociateRoleInheritanceMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associateinheritancemode displayName: AssociateRoleInheritanceMode type: string description: | diff --git a/api-specs/api/types/business-unit/BusinessUnit.raml b/api-specs/api/types/business-unit/BusinessUnit.raml index 9dfa216d2b..99c9e4150d 100644 --- a/api-specs/api/types/business-unit/BusinessUnit.raml +++ b/api-specs/api/types/business-unit/BusinessUnit.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunit displayName: BusinessUnit (updateType): BusinessUnitUpdate type: BaseResource @@ -30,12 +29,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the BusinessUnit. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the BusinessUnit. key: type: string description: | @@ -47,7 +46,7 @@ properties: type: BusinessUnitStatus description: | Indicates whether the Business Unit can be edited and used in [Orders](/../api/projects/orders). - stores?: + stores: type: StoreKeyReference[] description: | References to [Stores](ctp:api:type:Store) the Business Unit is associated with. Only present when `storeMode` is `Explicit`. diff --git a/api-specs/api/types/business-unit/BusinessUnitAssociateMode.raml b/api-specs/api/types/business-unit/BusinessUnitAssociateMode.raml index bff991c518..6c3bd26c60 100644 --- a/api-specs/api/types/business-unit/BusinessUnitAssociateMode.raml +++ b/api-specs/api/types/business-unit/BusinessUnitAssociateMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associatemode displayName: BusinessUnitAssociateMode type: string description: | diff --git a/api-specs/api/types/business-unit/BusinessUnitDraft.raml b/api-specs/api/types/business-unit/BusinessUnitDraft.raml index 44a63991d6..5a2ea55f4e 100644 --- a/api-specs/api/types/business-unit/BusinessUnitDraft.raml +++ b/api-specs/api/types/business-unit/BusinessUnitDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitdraft displayName: BusinessUnitDraft discriminator: unitType description: | diff --git a/api-specs/api/types/business-unit/BusinessUnitKeyReference.raml b/api-specs/api/types/business-unit/BusinessUnitKeyReference.raml index ece9671df8..63603a55d6 100644 --- a/api-specs/api/types/business-unit/BusinessUnitKeyReference.raml +++ b/api-specs/api/types/business-unit/BusinessUnitKeyReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitkeyreference displayName: BusinessUnitKeyReference type: KeyReference discriminatorValue: business-unit description: | - [Reference](/../api/types#reference) to a [BusinessUnit](ctp:api:type:BusinessUnit) by its key. + [Reference](ctp:api:type:Reference) to a [BusinessUnit](ctp:api:type:BusinessUnit) by its key. properties: key: type: string diff --git a/api-specs/api/types/business-unit/BusinessUnitReference.raml b/api-specs/api/types/business-unit/BusinessUnitReference.raml index 9786160062..8719a3a538 100644 --- a/api-specs/api/types/business-unit/BusinessUnitReference.raml +++ b/api-specs/api/types/business-unit/BusinessUnitReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitreference type: Reference displayName: BusinessUnitReference discriminatorValue: business-unit description: | - [Reference](/../api/types#reference) to a [BusinessUnit](ctp:api:type:BusinessUnit). + [Reference](ctp:api:type:Reference) to a [BusinessUnit](ctp:api:type:BusinessUnit). properties: obj?: type: BusinessUnit diff --git a/api-specs/api/types/business-unit/BusinessUnitResourceIdentifier.raml b/api-specs/api/types/business-unit/BusinessUnitResourceIdentifier.raml index 92c8783842..17a741dd11 100644 --- a/api-specs/api/types/business-unit/BusinessUnitResourceIdentifier.raml +++ b/api-specs/api/types/business-unit/BusinessUnitResourceIdentifier.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitresourceidentifier type: ResourceIdentifier displayName: BusinessUnitResourceIdentifier discriminatorValue: business-unit description: | - [ResourceIdentifier](/../api/types#resourceidentifier) to a [BusinessUnit](ctp:api:type:BusinessUnit). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/../api/errors#invalidjsoninput) error is returned. + [ResourceIdentifier](ctp:api:type:ResourceIdentifier) to a [BusinessUnit](ctp:api:type:BusinessUnit). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/../api/errors#invalidjsoninput) error is returned. properties: id?: type: string diff --git a/api-specs/api/types/business-unit/BusinessUnitStatus.raml b/api-specs/api/types/business-unit/BusinessUnitStatus.raml index 20c2afd21a..81fc0374d8 100644 --- a/api-specs/api/types/business-unit/BusinessUnitStatus.raml +++ b/api-specs/api/types/business-unit/BusinessUnitStatus.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitstatus displayName: BusinessUnitStatus type: string description: | diff --git a/api-specs/api/types/business-unit/BusinessUnitStoreMode.raml b/api-specs/api/types/business-unit/BusinessUnitStoreMode.raml index 54547a1a0f..46bcf10c2b 100644 --- a/api-specs/api/types/business-unit/BusinessUnitStoreMode.raml +++ b/api-specs/api/types/business-unit/BusinessUnitStoreMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitstoremode displayName: BusinessUnitStoreMode type: string description: | diff --git a/api-specs/api/types/business-unit/BusinessUnitType.raml b/api-specs/api/types/business-unit/BusinessUnitType.raml index bbe7bb233f..f9094f6d9c 100644 --- a/api-specs/api/types/business-unit/BusinessUnitType.raml +++ b/api-specs/api/types/business-unit/BusinessUnitType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunittype displayName: BusinessUnitType type: string description: | diff --git a/api-specs/api/types/business-unit/Company.raml b/api-specs/api/types/business-unit/Company.raml index db643023a1..c196461575 100644 --- a/api-specs/api/types/business-unit/Company.raml +++ b/api-specs/api/types/business-unit/Company.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunit displayName: Company type: BusinessUnit discriminatorValue: Company diff --git a/api-specs/api/types/business-unit/CompanyDraft.raml b/api-specs/api/types/business-unit/CompanyDraft.raml index 120fad6c03..f25a91f662 100644 --- a/api-specs/api/types/business-unit/CompanyDraft.raml +++ b/api-specs/api/types/business-unit/CompanyDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitdraft displayName: CompanyDraft type: BusinessUnitDraft discriminatorValue: Company diff --git a/api-specs/api/types/business-unit/Division.raml b/api-specs/api/types/business-unit/Division.raml index f4bfbdb66b..86fea9b468 100644 --- a/api-specs/api/types/business-unit/Division.raml +++ b/api-specs/api/types/business-unit/Division.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunit displayName: Division type: BusinessUnit discriminatorValue: Division diff --git a/api-specs/api/types/business-unit/DivisionDraft.raml b/api-specs/api/types/business-unit/DivisionDraft.raml index e08728263e..5de3cb30dd 100644 --- a/api-specs/api/types/business-unit/DivisionDraft.raml +++ b/api-specs/api/types/business-unit/DivisionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitdraft displayName: DivisionDraft type: BusinessUnitDraft discriminatorValue: Division diff --git a/api-specs/api/types/business-unit/InheritedAssociate.raml b/api-specs/api/types/business-unit/InheritedAssociate.raml index 6c09364dbb..f3ed1aad67 100644 --- a/api-specs/api/types/business-unit/InheritedAssociate.raml +++ b/api-specs/api/types/business-unit/InheritedAssociate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associate displayName: InheritedAssociate properties: associateRoleAssignments: diff --git a/api-specs/api/types/business-unit/InheritedAssociateRoleAssignment.raml b/api-specs/api/types/business-unit/InheritedAssociateRoleAssignment.raml index 5abe69ba5c..4cb5daf2fd 100644 --- a/api-specs/api/types/business-unit/InheritedAssociateRoleAssignment.raml +++ b/api-specs/api/types/business-unit/InheritedAssociateRoleAssignment.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#associateroleassignment displayName: InheritedAssociateRoleAssignment properties: associateRole: diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitAddAddressAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitAddAddressAction.raml index ae27e7bed3..5c43069799 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitAddAddressAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitAddAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#add-address type: BusinessUnitUpdateAction displayName: BusinessUnitAddAddressAction discriminatorValue: addAddress diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitAddAssociateAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitAddAssociateAction.raml index 043c184745..84f0780cb2 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitAddAssociateAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitAddAssociateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#add-associate type: BusinessUnitUpdateAction displayName: BusinessUnitAddAssociateAction discriminatorValue: addAssociate diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitAddBillingAddressIdAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitAddBillingAddressIdAction.raml index c60a6e533f..c3b94bebc0 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitAddBillingAddressIdAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitAddBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#add-billing-address-id type: BusinessUnitUpdateAction displayName: BusinessUnitAddBillingAddressIdAction discriminatorValue: addBillingAddressId diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitAddShippingAddressIdAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitAddShippingAddressIdAction.raml index 9a426a0b2d..b330ace989 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitAddShippingAddressIdAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitAddShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#add-shipping-address-id type: BusinessUnitUpdateAction displayName: BusinessUnitAddShippingAddressIdAction discriminatorValue: addShippingAddressId diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitAddStoreAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitAddStoreAction.raml index e2d356160e..277e9ee8d3 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitAddStoreAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitAddStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -# (docs-uri): https://docs.commercetools.com/api/projects/business-units#add-store type: BusinessUnitUpdateAction displayName: BusinessUnitAddStoreAction discriminatorValue: addStore diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitChangeAddressAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitChangeAddressAction.raml index 2832e04683..0261cd67a5 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitChangeAddressAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitChangeAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#change-address type: BusinessUnitUpdateAction displayName: BusinessUnitChangeAddressAction discriminatorValue: changeAddress diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateAction.raml index 81b5675cb3..fd236003c1 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#change-associate type: BusinessUnitUpdateAction displayName: BusinessUnitChangeAssociateAction discriminatorValue: changeAssociate diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateModeAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateModeAction.raml index 2093064347..b191d6b32c 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateModeAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitChangeAssociateModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#change-associate-mode type: BusinessUnitUpdateAction displayName: BusinessUnitChangeAssociateModeAction discriminatorValue: changeAssociateMode diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitChangeNameAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitChangeNameAction.raml index 13e3fb1000..15e3415747 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitChangeNameAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-name type: BusinessUnitUpdateAction displayName: BusinessUnitChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitChangeParentUnitAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitChangeParentUnitAction.raml index 0bb4db1c71..d16e32eae8 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitChangeParentUnitAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitChangeParentUnitAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#change-parent-unit type: BusinessUnitUpdateAction displayName: BusinessUnitChangeParentUnitAction discriminatorValue: changeParentUnit diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitChangeStatusAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitChangeStatusAction.raml index 4bf72eb6b0..445d60a61e 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitChangeStatusAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitChangeStatusAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#change-status type: BusinessUnitUpdateAction displayName: BusinessUnitChangeStatusAction discriminatorValue: changeStatus diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAddressAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAddressAction.raml index f7c35cbfe3..ec8b1f8bda 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAddressAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#remove-address type: BusinessUnitUpdateAction displayName: BusinessUnitRemoveAddressAction discriminatorValue: removeAddress diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAssociateAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAssociateAction.raml index adfb41ee0e..f0410318df 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAssociateAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveAssociateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#remove-associate type: BusinessUnitUpdateAction displayName: BusinessUnitRemoveAssociateAction discriminatorValue: removeAssociate diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveBillingAddressIdAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveBillingAddressIdAction.raml index 1de28a7c4c..27ef872bfb 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveBillingAddressIdAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#remove-billing-address-id type: BusinessUnitUpdateAction displayName: BusinessUnitRemoveBillingAddressIdAction discriminatorValue: removeBillingAddressId diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveShippingAddressIdAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveShippingAddressIdAction.raml index 7053a49fda..0afe890f71 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveShippingAddressIdAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#remove-shipping-address-id type: BusinessUnitUpdateAction displayName: BusinessUnitRemoveShippingAddressIdAction discriminatorValue: removeShippingAddressId diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveStoreAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveStoreAction.raml index 4926ad6550..8dd7d5fc7b 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitRemoveStoreAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitRemoveStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -# (docs-uri): https://docs.commercetools.com/api/projects/business-units#remove-store type: BusinessUnitUpdateAction displayName: BusinessUnitRemoveStoreAction discriminatorValue: removeStore diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomFieldAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomFieldAction.raml index d9a7f7696b..9cede166c3 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomFieldAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-customfield-in-address type: BusinessUnitUpdateAction displayName: BusinessUnitSetAddressCustomFieldAction discriminatorValue: setAddressCustomField diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomTypeAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomTypeAction.raml index 98ec4b33d6..79050c3f93 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomTypeAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-custom-type-in-address type: BusinessUnitUpdateAction displayName: BusinessUnitSetAddressCustomTypeAction discriminatorValue: setAddressCustomType diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetAssociatesAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetAssociatesAction.raml index 16b3978f3f..1e9cab6352 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetAssociatesAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetAssociatesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-associates type: BusinessUnitUpdateAction displayName: BusinessUnitSetAssociatesAction discriminatorValue: setAssociates diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetContactEmailAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetContactEmailAction.raml index efbad04078..d988bb4513 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetContactEmailAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetContactEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-contact-email type: BusinessUnitUpdateAction displayName: BusinessUnitSetContactEmailAction discriminatorValue: setContactEmail diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomFieldAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomFieldAction.raml index 894462ed83..7336f29dfb 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomFieldAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-customfield type: BusinessUnitUpdateAction displayName: BusinessUnitSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomTypeAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomTypeAction.raml index 4f53fcc195..1501863365 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomTypeAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-custom-type type: BusinessUnitUpdateAction displayName: BusinessUnitSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultBillingAddressAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultBillingAddressAction.raml index 732c35c4b5..3374713690 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultBillingAddressAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-default-billing-address-id type: BusinessUnitUpdateAction displayName: BusinessUnitSetDefaultBillingAddressAction discriminatorValue: setDefaultBillingAddress diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultShippingAddressAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultShippingAddressAction.raml index dba7d7d615..86323bd53f 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultShippingAddressAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetDefaultShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-default-shipping-address-id type: BusinessUnitUpdateAction displayName: BusinessUnitSetDefaultShippingAddressAction discriminatorValue: setDefaultShippingAddress diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetStoreModeAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetStoreModeAction.raml index f06277265c..8dad5dfa2f 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetStoreModeAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetStoreModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-store-mode type: BusinessUnitUpdateAction displayName: BusinessUnitSetStoreModeAction discriminatorValue: setStoreMode diff --git a/api-specs/api/types/business-unit/updates/BusinessUnitSetStoresAction.raml b/api-specs/api/types/business-unit/updates/BusinessUnitSetStoresAction.raml index 96a91ad26a..fef38350aa 100644 --- a/api-specs/api/types/business-unit/updates/BusinessUnitSetStoresAction.raml +++ b/api-specs/api/types/business-unit/updates/BusinessUnitSetStoresAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): BusinessUnit -(docs-uri): https://docs.commercetools.com/api/projects/business-units#set-stores type: BusinessUnitUpdateAction displayName: BusinessUnitSetStoresAction discriminatorValue: setStores @@ -12,7 +11,7 @@ description: | Orders created before the Set Stores update action remain unchanged. Setting the Stores on a Business Unit generates a [BusinessUnitStoresSet](ctp:api:type:BusinessUnitStoresSetMessage) Message. properties: - stores?: + stores: type: StoreResourceIdentifier[] description: | [Stores](ctp:api:type:Store) to set. Overrides the current list of Stores. diff --git a/api-specs/api/types/cart-discount/CartDiscount.raml b/api-specs/api/types/cart-discount/CartDiscount.raml index e6ce0e58e1..56fec671a9 100644 --- a/api-specs/api/types/cart-discount/CartDiscount.raml +++ b/api-specs/api/types/cart-discount/CartDiscount.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscount displayName: CartDiscount (updateType): CartDiscountUpdate type: BaseResource @@ -17,21 +16,21 @@ properties: createdAt: type: datetime description: | - Date and time (UTC) for the CartDiscount was initially created. + Date and time (UTC) the CartDiscount was initially created. lastModifiedAt: type: datetime description: | - Date and time (UTC) for the CartDiscount was last updated. + Date and time (UTC) the CartDiscount was last updated. lastModifiedBy?: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the CartDiscount. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the CartDiscount. name: type: LocalizedString description: | diff --git a/api-specs/api/types/cart-discount/CartDiscountDraft.raml b/api-specs/api/types/cart-discount/CartDiscountDraft.raml index 783f121d62..56e32ab2d1 100644 --- a/api-specs/api/types/cart-discount/CartDiscountDraft.raml +++ b/api-specs/api/types/cart-discount/CartDiscountDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscountdraft displayName: CartDiscountDraft type: object properties: diff --git a/api-specs/api/types/cart-discount/CartDiscountReference.raml b/api-specs/api/types/cart-discount/CartDiscountReference.raml index b5fedf1d99..56522842d1 100644 --- a/api-specs/api/types/cart-discount/CartDiscountReference.raml +++ b/api-specs/api/types/cart-discount/CartDiscountReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscountreference type: Reference displayName: CartDiscountReference discriminatorValue: cart-discount diff --git a/api-specs/api/types/cart-discount/CartDiscountResourceIdentifier.raml b/api-specs/api/types/cart-discount/CartDiscountResourceIdentifier.raml index 4a78c524f3..a374fb54b0 100644 --- a/api-specs/api/types/cart-discount/CartDiscountResourceIdentifier.raml +++ b/api-specs/api/types/cart-discount/CartDiscountResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscountresourceidentifier type: ResourceIdentifier displayName: CartDiscountResourceIdentifier discriminatorValue: cart-discount diff --git a/api-specs/api/types/cart-discount/CartDiscountTarget.raml b/api-specs/api/types/cart-discount/CartDiscountTarget.raml index d235e3d2a6..6c7459181d 100644 --- a/api-specs/api/types/cart-discount/CartDiscountTarget.raml +++ b/api-specs/api/types/cart-discount/CartDiscountTarget.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscounttarget type: object displayName: CartDiscountTarget discriminator: type diff --git a/api-specs/api/types/cart-discount/CartDiscountValue.raml b/api-specs/api/types/cart-discount/CartDiscountValue.raml index 2905a6f5ca..704d890074 100644 --- a/api-specs/api/types/cart-discount/CartDiscountValue.raml +++ b/api-specs/api/types/cart-discount/CartDiscountValue.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscountvalue type: object displayName: CartDiscountValue discriminator: type diff --git a/api-specs/api/types/cart-discount/CartDiscountValueDraft.raml b/api-specs/api/types/cart-discount/CartDiscountValueDraft.raml index 967b713a02..e455169052 100644 --- a/api-specs/api/types/cart-discount/CartDiscountValueDraft.raml +++ b/api-specs/api/types/cart-discount/CartDiscountValueDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#cartdiscountvaluedraft type: object displayName: CartDiscountValueDraft discriminator: type diff --git a/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItem.raml b/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItem.raml index 85c88c6cfa..34c177e430 100644 --- a/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItem.raml +++ b/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItem.raml @@ -8,6 +8,8 @@ properties: type: ProductReference description: | Reference to a Product. + + A Gift Line Item can be present on a Cart even if the referenced Product is unpublished. variantId: type: number format: int64 diff --git a/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItemDraft.raml b/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItemDraft.raml index adb13d94c7..ec2212be93 100644 --- a/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItemDraft.raml +++ b/api-specs/api/types/cart-discount/CartDiscountValueGiftLineItemDraft.raml @@ -11,6 +11,8 @@ properties: type: ProductResourceIdentifier description: | ResourceIdentifier of a Product. + + A Gift Line Item is added to a Cart even if the referenced Product is unpublished. variantId: type: number format: int64 diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountAddStoreAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountAddStoreAction.raml index 4d9aa20481..fafc81d32d 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountAddStoreAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountAddStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#add-store type: CartDiscountUpdateAction displayName: CartDiscountAddStoreAction discriminatorValue: addStore diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeCartPredicateAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeCartPredicateAction.raml index bb721265a2..e239596447 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeCartPredicateAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeCartPredicateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-cart-predicate type: CartDiscountUpdateAction displayName: CartDiscountChangeCartPredicateAction discriminatorValue: changeCartPredicate diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeIsActiveAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeIsActiveAction.raml index 099401ab10..2a1086cb90 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeIsActiveAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeIsActiveAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-isactive type: CartDiscountUpdateAction displayName: CartDiscountChangeIsActiveAction discriminatorValue: changeIsActive diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeNameAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeNameAction.raml index 4d544c40e5..c5f6128c13 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeNameAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-name type: CartDiscountUpdateAction displayName: CartDiscountChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeRequiresDiscountCodeAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeRequiresDiscountCodeAction.raml index 39f7edaa85..bdb23246cf 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeRequiresDiscountCodeAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeRequiresDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-requires-discountcode type: CartDiscountUpdateAction displayName: CartDiscountChangeRequiresDiscountCodeAction discriminatorValue: changeRequiresDiscountCode diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeSortOrderAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeSortOrderAction.raml index 8d3dee6950..46aacc6777 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeSortOrderAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeSortOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-sort-order type: CartDiscountUpdateAction displayName: CartDiscountChangeSortOrderAction discriminatorValue: changeSortOrder diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeStackingModeAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeStackingModeAction.raml index d824548695..fa27e9137e 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeStackingModeAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeStackingModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-stacking-mode type: CartDiscountUpdateAction displayName: CartDiscountChangeStackingModeAction discriminatorValue: changeStackingMode diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeTargetAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeTargetAction.raml index 5514dd9a54..b5d7b1620d 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeTargetAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeTargetAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-target type: CartDiscountUpdateAction displayName: CartDiscountChangeTargetAction discriminatorValue: changeTarget diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountChangeValueAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountChangeValueAction.raml index b6eb07e42a..2df401b6d2 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountChangeValueAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountChangeValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#change-value type: CartDiscountUpdateAction displayName: CartDiscountChangeValueAction discriminatorValue: changeValue diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountRemoveStoreAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountRemoveStoreAction.raml index 12ac008ea3..c038928f57 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountRemoveStoreAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountRemoveStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#remove-store type: CartDiscountUpdateAction displayName: CartDiscountRemoveStoreAction discriminatorValue: removeStore diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomFieldAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomFieldAction.raml index 049321a70c..b0d0aad45a 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomFieldAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-custom-field type: CartDiscountUpdateAction displayName: CartDiscountSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomTypeAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomTypeAction.raml index a67d96140c..cda8343c3f 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomTypeAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-custom-type type: CartDiscountUpdateAction displayName: CartDiscountSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetDescriptionAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetDescriptionAction.raml index 1702e91aa2..6e28d50d10 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetDescriptionAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-description type: CartDiscountUpdateAction displayName: CartDiscountSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetKeyAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetKeyAction.raml index c2cdf884f5..96fcedcd95 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetKeyAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-key type: CartDiscountUpdateAction displayName: CartDiscountSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetStoresAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetStoresAction.raml index 977b7fd565..ef63d781e3 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetStoresAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetStoresAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-stores type: CartDiscountUpdateAction displayName: CartDiscountSetStoresAction discriminatorValue: setStores @@ -10,7 +9,7 @@ description: | This action generates a [CartDiscountStoresSet](ctp:api:type:CartDiscountStoresSetMessage) Message. properties: - stores?: + stores: type: StoreResourceIdentifier[] maxItems: 500 description: | diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAction.raml index 17a338bbf2..707293bfd2 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-valid-from type: CartDiscountUpdateAction displayName: CartDiscountSetValidFromAction discriminatorValue: setValidFrom diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAndUntilAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAndUntilAction.raml index 07142b8bf3..54cd6913a7 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAndUntilAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetValidFromAndUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-valid-from-and-until type: CartDiscountUpdateAction displayName: CartDiscountSetValidFromAndUntilAction discriminatorValue: setValidFromAndUntil diff --git a/api-specs/api/types/cart-discount/updates/CartDiscountSetValidUntilAction.raml b/api-specs/api/types/cart-discount/updates/CartDiscountSetValidUntilAction.raml index 40bc29301f..2db59ddb33 100644 --- a/api-specs/api/types/cart-discount/updates/CartDiscountSetValidUntilAction.raml +++ b/api-specs/api/types/cart-discount/updates/CartDiscountSetValidUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CartDiscount -(docs-uri): https://docs.commercetools.com/api/projects/cartDiscounts#set-valid-until type: CartDiscountUpdateAction displayName: CartDiscountSetValidUntilAction discriminatorValue: setValidUntil diff --git a/api-specs/api/types/cart/Cart.raml b/api-specs/api/types/cart/Cart.raml index 0d376aad4d..cacd1aae80 100644 --- a/api-specs/api/types/cart/Cart.raml +++ b/api-specs/api/types/cart/Cart.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cart displayName: Cart (updateType): CartUpdate type: BaseResource @@ -202,9 +201,9 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Cart. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Cart. diff --git a/api-specs/api/types/cart/CartDraft.raml b/api-specs/api/types/cart/CartDraft.raml index 2f62a520dd..f3f66fd321 100644 --- a/api-specs/api/types/cart/CartDraft.raml +++ b/api-specs/api/types/cart/CartDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cartdraft displayName: CartDraft type: object properties: @@ -82,6 +81,7 @@ properties: type: BaseAddress description: | Shipping address for a Cart with `Single` [ShippingMode](ctp:api:type:ShippingMode). Determines eligible [ShippingMethod](ctp:api:type:ShippingMethod) rates and Tax Rates of Line Items. + Must be one of the `itemShippingAddresses` when that field is also provided. shippingMethod?: type: ShippingMethodResourceIdentifier description: | diff --git a/api-specs/api/types/cart/CartOrigin.raml b/api-specs/api/types/cart/CartOrigin.raml index 076f0d59a0..abbb46e788 100644 --- a/api-specs/api/types/cart/CartOrigin.raml +++ b/api-specs/api/types/cart/CartOrigin.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cartorigin displayName: CartOrigin type: string description: | diff --git a/api-specs/api/types/cart/CartPagedQueryResponse.raml b/api-specs/api/types/cart/CartPagedQueryResponse.raml index 3aad21a718..47f32dc9b3 100644 --- a/api-specs/api/types/cart/CartPagedQueryResponse.raml +++ b/api-specs/api/types/cart/CartPagedQueryResponse.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cartpagedqueryresponse displayName: CartPagedQueryResponse type: object description: | diff --git a/api-specs/api/types/cart/CartReference.raml b/api-specs/api/types/cart/CartReference.raml index 7f2c239d56..20bdc5a8a9 100644 --- a/api-specs/api/types/cart/CartReference.raml +++ b/api-specs/api/types/cart/CartReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cartreference type: Reference displayName: CartReference discriminatorValue: cart diff --git a/api-specs/api/types/cart/CartResourceIdentifier.raml b/api-specs/api/types/cart/CartResourceIdentifier.raml index 06d1376dd6..b1b34bd421 100644 --- a/api-specs/api/types/cart/CartResourceIdentifier.raml +++ b/api-specs/api/types/cart/CartResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cartresourceidentifier type: ResourceIdentifier displayName: CartResourceIdentifier discriminatorValue: cart diff --git a/api-specs/api/types/cart/CartState.raml b/api-specs/api/types/cart/CartState.raml index 195eba9949..7c494a193a 100644 --- a/api-specs/api/types/cart/CartState.raml +++ b/api-specs/api/types/cart/CartState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#cartstate displayName: CartState type: string description: | diff --git a/api-specs/api/types/cart/ClassificationShippingRateInput.raml b/api-specs/api/types/cart/ClassificationShippingRateInput.raml index fda7afbc7a..32047dcf8f 100644 --- a/api-specs/api/types/cart/ClassificationShippingRateInput.raml +++ b/api-specs/api/types/cart/ClassificationShippingRateInput.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#classificationshippingrateinput displayName: ClassificationShippingRateInput type: ShippingRateInput discriminatorValue: Classification diff --git a/api-specs/api/types/cart/ClassificationShippingRateInputDraft.raml b/api-specs/api/types/cart/ClassificationShippingRateInputDraft.raml index c45278c2f6..ecbda693d8 100644 --- a/api-specs/api/types/cart/ClassificationShippingRateInputDraft.raml +++ b/api-specs/api/types/cart/ClassificationShippingRateInputDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#classificationshippingrateinputdraft displayName: ClassificationShippingRateInputDraft type: ShippingRateInputDraft discriminatorValue: Classification diff --git a/api-specs/api/types/cart/CustomLineItem.raml b/api-specs/api/types/cart/CustomLineItem.raml index de1a9abff3..453692707a 100644 --- a/api-specs/api/types/cart/CustomLineItem.raml +++ b/api-specs/api/types/cart/CustomLineItem.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#customlineitem displayName: CustomLineItem type: object description: | @@ -30,7 +29,8 @@ properties: taxedPricePortions: type: MethodTaxedPrice[] description: |- - Taxed price of the Shipping Method that is automatically set after `perMethodTaxRate` is set. + Total taxed prices based on the quantity of the Custom Line Item assigned to each [Shipping Method](ctp:api:type:ShippingMethod). Only applicable for Carts with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + Automatically set after `perMethodTaxRate` is set. totalPrice: type: CentPrecisionMoney description: | diff --git a/api-specs/api/types/cart/CustomLineItemDraft.raml b/api-specs/api/types/cart/CustomLineItemDraft.raml index ea706302fc..2ddcb2db0d 100644 --- a/api-specs/api/types/cart/CustomLineItemDraft.raml +++ b/api-specs/api/types/cart/CustomLineItemDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#customlineitemdraft displayName: CustomLineItemDraft type: object properties: @@ -48,7 +47,7 @@ properties: type: ItemShippingDetailsDraft description: | Container for Custom Line Item-specific addresses. - priceMode: + priceMode?: type: CustomLineItemPriceMode description: | - If `Standard`, Cart Discounts with a matching [CartDiscountCustomLineItemsTarget](ctp:api:type:CartDiscountCustomLineItemsTarget) diff --git a/api-specs/api/types/cart/CustomShippingDraft.raml b/api-specs/api/types/cart/CustomShippingDraft.raml index 09673996fb..1b880fdcf7 100644 --- a/api-specs/api/types/cart/CustomShippingDraft.raml +++ b/api-specs/api/types/cart/CustomShippingDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#customshippingdraft displayName: CustomShippingDraft type: object properties: diff --git a/api-specs/api/types/cart/DirectDiscount.raml b/api-specs/api/types/cart/DirectDiscount.raml index 8d3af4a473..3664b906e7 100644 --- a/api-specs/api/types/cart/DirectDiscount.raml +++ b/api-specs/api/types/cart/DirectDiscount.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#directdiscount displayName: DirectDiscount type: object description: | diff --git a/api-specs/api/types/cart/DirectDiscountDraft.raml b/api-specs/api/types/cart/DirectDiscountDraft.raml index e32f434486..84573005e1 100644 --- a/api-specs/api/types/cart/DirectDiscountDraft.raml +++ b/api-specs/api/types/cart/DirectDiscountDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#directdiscountdraft displayName: DirectDiscountDraft type: object example: !include ../../examples/Cart/CartDirectDiscountDraft.json diff --git a/api-specs/api/types/cart/DirectDiscountReference.raml b/api-specs/api/types/cart/DirectDiscountReference.raml index 49cb9b089d..8d9e05ac55 100644 --- a/api-specs/api/types/cart/DirectDiscountReference.raml +++ b/api-specs/api/types/cart/DirectDiscountReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#directdiscountreference type: Reference displayName: DirectDiscountReference discriminatorValue: direct-discount diff --git a/api-specs/api/types/cart/DiscountCodeInfo.raml b/api-specs/api/types/cart/DiscountCodeInfo.raml index d54c1e9f1a..2e2b17c05a 100644 --- a/api-specs/api/types/cart/DiscountCodeInfo.raml +++ b/api-specs/api/types/cart/DiscountCodeInfo.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountcodereference displayName: DiscountCodeInfo type: object properties: diff --git a/api-specs/api/types/cart/DiscountCodeState.raml b/api-specs/api/types/cart/DiscountCodeState.raml index 673c2b28d7..604dbf410e 100644 --- a/api-specs/api/types/cart/DiscountCodeState.raml +++ b/api-specs/api/types/cart/DiscountCodeState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountcodestate displayName: DiscountCodeState type: string description: | diff --git a/api-specs/api/types/cart/DiscountOnTotalPrice.raml b/api-specs/api/types/cart/DiscountOnTotalPrice.raml index 4b5d861c3f..1a9e4fb896 100644 --- a/api-specs/api/types/cart/DiscountOnTotalPrice.raml +++ b/api-specs/api/types/cart/DiscountOnTotalPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountontotalprice displayName: DiscountOnTotalPrice type: object properties: diff --git a/api-specs/api/types/cart/DiscountedLineItemPortion.raml b/api-specs/api/types/cart/DiscountedLineItemPortion.raml index b63ecd15c7..e7551f9685 100644 --- a/api-specs/api/types/cart/DiscountedLineItemPortion.raml +++ b/api-specs/api/types/cart/DiscountedLineItemPortion.raml @@ -1,14 +1,13 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountedlineitemportion displayName: DiscountedLineItemPortion type: object properties: discount: type: Reference description: | - A [CartDiscountReference](ctp:api:type:CartDiscountReference) or [DirectDiscountReference](ctp:api:type:DirectDiscountReference) for the applicable discount on the Line Item. + A [CartDiscountReference](ctp:api:type:CartDiscountReference) or [DirectDiscountReference](ctp:api:type:DirectDiscountReference) of the applicable discount on the Line Item. discountedAmount: type: TypedMoney description: | - Money value of the discount applicable. + Money value of the applicable discount. diff --git a/api-specs/api/types/cart/DiscountedLineItemPortionDraft.raml b/api-specs/api/types/cart/DiscountedLineItemPortionDraft.raml new file mode 100644 index 0000000000..d66ab6270e --- /dev/null +++ b/api-specs/api/types/cart/DiscountedLineItemPortionDraft.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): Cart +displayName: DiscountedLineItemPortionDraft +type: object +properties: + discount: + type: Reference + description: | + A [CartDiscountReference](ctp:api:type:CartDiscountReference) or [DirectDiscountReference](ctp:api:type:DirectDiscountReference) for the discount applicable on the Line Item. + discountedAmount: + type: TypedMoneyDraft + description: | + Money value for the discount applicable. diff --git a/api-specs/api/types/cart/DiscountedLineItemPrice.raml b/api-specs/api/types/cart/DiscountedLineItemPrice.raml index 9f1d7e0a4d..af0c38ac49 100644 --- a/api-specs/api/types/cart/DiscountedLineItemPrice.raml +++ b/api-specs/api/types/cart/DiscountedLineItemPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountedlineitemprice displayName: DiscountedLineItemPrice type: object properties: diff --git a/api-specs/api/types/cart/DiscountedLineItemPriceForQuantity.raml b/api-specs/api/types/cart/DiscountedLineItemPriceForQuantity.raml index b108c48931..23169a538e 100644 --- a/api-specs/api/types/cart/DiscountedLineItemPriceForQuantity.raml +++ b/api-specs/api/types/cart/DiscountedLineItemPriceForQuantity.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountedlineitempriceforquantity displayName: DiscountedLineItemPriceForQuantity type: object properties: diff --git a/api-specs/api/types/cart/DiscountedTotalPricePortion.raml b/api-specs/api/types/cart/DiscountedTotalPricePortion.raml index cb232ec4b2..fa5e287bc9 100644 --- a/api-specs/api/types/cart/DiscountedTotalPricePortion.raml +++ b/api-specs/api/types/cart/DiscountedTotalPricePortion.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#discountedtotalpriceportion displayName: DiscountedTotalPricePortion type: object properties: diff --git a/api-specs/api/types/cart/ExternalLineItemTotalPrice.raml b/api-specs/api/types/cart/ExternalLineItemTotalPrice.raml index 0b1c911e54..f27485359b 100644 --- a/api-specs/api/types/cart/ExternalLineItemTotalPrice.raml +++ b/api-specs/api/types/cart/ExternalLineItemTotalPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#externallineitemtotalprice type: object displayName: ExternalLineItemTotalPrice properties: diff --git a/api-specs/api/types/cart/ExternalTaxAmountDraft.raml b/api-specs/api/types/cart/ExternalTaxAmountDraft.raml index ca27b12297..52418fa9ee 100644 --- a/api-specs/api/types/cart/ExternalTaxAmountDraft.raml +++ b/api-specs/api/types/cart/ExternalTaxAmountDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#externaltaxamountdraft displayName: ExternalTaxAmountDraft type: object description: | diff --git a/api-specs/api/types/cart/ExternalTaxRateDraft.raml b/api-specs/api/types/cart/ExternalTaxRateDraft.raml index 41f9b8efee..381873d4db 100644 --- a/api-specs/api/types/cart/ExternalTaxRateDraft.raml +++ b/api-specs/api/types/cart/ExternalTaxRateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#externaltaxratedraft displayName: ExternalTaxRateDraft type: object description: | diff --git a/api-specs/api/types/cart/InventoryMode.raml b/api-specs/api/types/cart/InventoryMode.raml index e1c6815f00..0cffc18b04 100644 --- a/api-specs/api/types/cart/InventoryMode.raml +++ b/api-specs/api/types/cart/InventoryMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#inventorymode displayName: InventoryMode type: string description: | diff --git a/api-specs/api/types/cart/ItemShippingDetails.raml b/api-specs/api/types/cart/ItemShippingDetails.raml index db63025524..ea19664da5 100644 --- a/api-specs/api/types/cart/ItemShippingDetails.raml +++ b/api-specs/api/types/cart/ItemShippingDetails.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#itemshippingdetails displayName: ItemShippingDetails type: object properties: diff --git a/api-specs/api/types/cart/ItemShippingDetailsDraft.raml b/api-specs/api/types/cart/ItemShippingDetailsDraft.raml index 24d799dcc9..c462bc3578 100644 --- a/api-specs/api/types/cart/ItemShippingDetailsDraft.raml +++ b/api-specs/api/types/cart/ItemShippingDetailsDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#itemshippingdetailsdraft displayName: ItemShippingDetailsDraft type: object description: | diff --git a/api-specs/api/types/cart/ItemShippingTarget.raml b/api-specs/api/types/cart/ItemShippingTarget.raml index 048b5a1978..8fb0a57583 100644 --- a/api-specs/api/types/cart/ItemShippingTarget.raml +++ b/api-specs/api/types/cart/ItemShippingTarget.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#itemshippingtarget displayName: ItemShippingTarget type: object description: | @@ -26,4 +25,4 @@ properties: description: |- User-defined unique identifier of the Shipping Method in a Cart with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). - It connects Line Item quantities with individual shipping addresses. + It connects Line Item or Custom Line Item quantities with individual Shipping Methods. diff --git a/api-specs/api/types/cart/LineItem.raml b/api-specs/api/types/cart/LineItem.raml index e993472f21..1602ae63db 100644 --- a/api-specs/api/types/cart/LineItem.raml +++ b/api-specs/api/types/cart/LineItem.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#lineitem displayName: LineItem type: object description: | @@ -75,7 +74,8 @@ properties: taxedPricePortions: type: MethodTaxedPrice[] description: |- - Taxed price of the Shipping Method that is automatically set after `perMethodTaxRate` is set. + Total taxed prices based on the quantity of Line Item assigned to each [Shipping Method](ctp:api:type:ShippingMethod). Only applicable for Carts with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + Automatically set after `perMethodTaxRate` is set. state: type: ItemState[] description: | diff --git a/api-specs/api/types/cart/LineItemDraft.raml b/api-specs/api/types/cart/LineItemDraft.raml index 4ea96f64c6..62435a743e 100644 --- a/api-specs/api/types/cart/LineItemDraft.raml +++ b/api-specs/api/types/cart/LineItemDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#lineitemdraft displayName: LineItemDraft type: object description: | @@ -64,7 +63,7 @@ properties: externalTaxRate?: type: ExternalTaxRateDraft description: | - Sets the external Tax Rate for the Line Item, if the Cart has the `External` [TaxMode](ctp:api:type:TaxMode). + Sets the external Tax Rate for the Line Item, if the Cart has the `External` [TaxMode](ctp:api:type:TaxMode) and `Single` [ShippingMode](ctp:api:type:ShippingMode). perMethodExternalTaxRate?: type: MethodExternalTaxRateDraft[] description: | diff --git a/api-specs/api/types/cart/LineItemMode.raml b/api-specs/api/types/cart/LineItemMode.raml index 074addd1f4..35194572f3 100644 --- a/api-specs/api/types/cart/LineItemMode.raml +++ b/api-specs/api/types/cart/LineItemMode.raml @@ -1,21 +1,20 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#lineitemmode displayName: LineItemMode type: string description: | - Indicates how a Line Item is added to a Cart. + Indicates how a Line Item was added to a Cart. enum: - Standard - GiftLineItem (enumDescriptions): Standard: | - The Line Item is added during [Cart creation](ctp:api:endpoint:/{projectKey}/carts:POST) or using the [Add LineItem](ctp:api:type:CartAddLineItemAction) update action. + The Line Item was added during [Cart creation](ctp:api:endpoint:/{projectKey}/carts:POST) or the [Add LineItem](ctp:api:type:CartAddLineItemAction) update action. The Line Item quantity can be changed without restriction. GiftLineItem: | - The Line Item is added automatically by a Cart Discount with [CartDiscountValueGiftLineItem](ctp:api:type:CartDiscountValueGiftLineItem). + One Line Item was added automatically to a Cart by a Cart Discount with [CartDiscountValueGiftLineItemDraft](ctp:api:type:CartDiscountValueGiftLineItemDraft). - The quantity cannot be [increased](ctp:api:type:CartChangeLineItemQuantityAction), and it won't be merged when the same Line Item is [added](ctp:api:type:CartAddLineItemAction) to the Cart. + The quantity cannot be [increased](ctp:api:type:CartChangeLineItemQuantityAction), and it won't be merged when [adding](ctp:api:type:CartAddLineItemAction) the same Line Item to the Cart. If the gift is [removed](ctp:api:type:CartRemoveLineItemAction), an entry is added to the `refusedGifts` array and the discount won't be applied to the Cart. The price cannot be changed [externally](ctp:api:type:CartSetLineItemTotalPriceAction). diff --git a/api-specs/api/types/cart/LineItemPriceMode.raml b/api-specs/api/types/cart/LineItemPriceMode.raml index 3ec8d110b5..47ffcfee00 100644 --- a/api-specs/api/types/cart/LineItemPriceMode.raml +++ b/api-specs/api/types/cart/LineItemPriceMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#lineitempricemode displayName: LineItemPriceMode type: string description: | diff --git a/api-specs/api/types/cart/MethodExternalTaxRateDraft.raml b/api-specs/api/types/cart/MethodExternalTaxRateDraft.raml index 1bd8902c5c..a55e8aa169 100644 --- a/api-specs/api/types/cart/MethodExternalTaxRateDraft.raml +++ b/api-specs/api/types/cart/MethodExternalTaxRateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#methodexternaltaxratedraft displayName: MethodExternalTaxRateDraft type: object properties: diff --git a/api-specs/api/types/cart/MethodTaxRate.raml b/api-specs/api/types/cart/MethodTaxRate.raml index 3e951102d5..db60cdd7fd 100644 --- a/api-specs/api/types/cart/MethodTaxRate.raml +++ b/api-specs/api/types/cart/MethodTaxRate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#methodtaxrate displayName: MethodTaxRate type: object properties: diff --git a/api-specs/api/types/cart/MethodTaxedPrice.raml b/api-specs/api/types/cart/MethodTaxedPrice.raml index 55c58379a8..22f2bf4d51 100644 --- a/api-specs/api/types/cart/MethodTaxedPrice.raml +++ b/api-specs/api/types/cart/MethodTaxedPrice.raml @@ -1,14 +1,13 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#methodtaxedprice displayName: MethodTaxedPrice type: object properties: shippingMethodKey: type: string description: | - User-defined unique identifier of the Shipping Method in a Cart with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + User-defined unique identifier of the [Shipping Method](ctp:api:type:ShippingMethod) in a Cart with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). taxedPrice?: type: TaxedItemPrice description: | - Taxed price for the Shipping Method. + Total taxed price based on the quantity of the Line Item or Custom Line Item assigned to the Shipping Method identified by `shippingMethodKey`. diff --git a/api-specs/api/types/cart/ReplicaCartDraft.raml b/api-specs/api/types/cart/ReplicaCartDraft.raml index 8ccabc01e4..194cbab8ca 100644 --- a/api-specs/api/types/cart/ReplicaCartDraft.raml +++ b/api-specs/api/types/cart/ReplicaCartDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#replicacartdraft displayName: ReplicaCartDraft type: object description: | diff --git a/api-specs/api/types/cart/RoundingMode.raml b/api-specs/api/types/cart/RoundingMode.raml index 41927669a3..99c1a91e9b 100644 --- a/api-specs/api/types/cart/RoundingMode.raml +++ b/api-specs/api/types/cart/RoundingMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#roundingmode displayName: RoundingMode type: string description: | diff --git a/api-specs/api/types/cart/ScoreShippingRateInput.raml b/api-specs/api/types/cart/ScoreShippingRateInput.raml index 9bdac5221a..10fed388da 100644 --- a/api-specs/api/types/cart/ScoreShippingRateInput.raml +++ b/api-specs/api/types/cart/ScoreShippingRateInput.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#scoreshippingrateinput displayName: ScoreShippingRateInput type: ShippingRateInput discriminatorValue: Score diff --git a/api-specs/api/types/cart/ScoreShippingRateInputDraft.raml b/api-specs/api/types/cart/ScoreShippingRateInputDraft.raml index 504e49bed8..7d22e1ed39 100644 --- a/api-specs/api/types/cart/ScoreShippingRateInputDraft.raml +++ b/api-specs/api/types/cart/ScoreShippingRateInputDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#scoreshippingrateinputdraft displayName: ScoreShippingRateInputDraft type: ShippingRateInputDraft discriminatorValue: Score diff --git a/api-specs/api/types/cart/Shipping.raml b/api-specs/api/types/cart/Shipping.raml index e1d86991ac..4db5079420 100644 --- a/api-specs/api/types/cart/Shipping.raml +++ b/api-specs/api/types/cart/Shipping.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shipping displayName: Shipping type: object properties: diff --git a/api-specs/api/types/cart/ShippingDraft.raml b/api-specs/api/types/cart/ShippingDraft.raml index 8cd824feb1..c1bcd6afe9 100644 --- a/api-specs/api/types/cart/ShippingDraft.raml +++ b/api-specs/api/types/cart/ShippingDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shippingdraft displayName: ShippingDraft type: object description: | diff --git a/api-specs/api/types/cart/ShippingInfo.raml b/api-specs/api/types/cart/ShippingInfo.raml index 10a2e13bfc..ce0407735f 100644 --- a/api-specs/api/types/cart/ShippingInfo.raml +++ b/api-specs/api/types/cart/ShippingInfo.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shippinginfo displayName: ShippingInfo type: object properties: diff --git a/api-specs/api/types/cart/ShippingMethodState.raml b/api-specs/api/types/cart/ShippingMethodState.raml index ff41a89c29..73f2ea2f41 100644 --- a/api-specs/api/types/cart/ShippingMethodState.raml +++ b/api-specs/api/types/cart/ShippingMethodState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shippingmethodstate displayName: ShippingMethodState type: string description: | diff --git a/api-specs/api/types/cart/ShippingMode.raml b/api-specs/api/types/cart/ShippingMode.raml index ca9d853e6e..e37e37bbfd 100644 --- a/api-specs/api/types/cart/ShippingMode.raml +++ b/api-specs/api/types/cart/ShippingMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shippingmode displayName: ShippingMode type: string enum: diff --git a/api-specs/api/types/cart/ShippingRateInput.raml b/api-specs/api/types/cart/ShippingRateInput.raml index 28c57d2e61..aa30d2be98 100644 --- a/api-specs/api/types/cart/ShippingRateInput.raml +++ b/api-specs/api/types/cart/ShippingRateInput.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shippingrateinput displayName: ShippingRateInput type: object discriminator: type diff --git a/api-specs/api/types/cart/ShippingRateInputDraft.raml b/api-specs/api/types/cart/ShippingRateInputDraft.raml index 1ecf6bfd13..4443b27669 100644 --- a/api-specs/api/types/cart/ShippingRateInputDraft.raml +++ b/api-specs/api/types/cart/ShippingRateInputDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#shippingrateinputdraft displayName: ShippingRateInputDraft type: object description: Generic type holding specifc ShippingRateInputDraft types. diff --git a/api-specs/api/types/cart/TaxCalculationMode.raml b/api-specs/api/types/cart/TaxCalculationMode.raml index 71789e238f..5ea16892aa 100644 --- a/api-specs/api/types/cart/TaxCalculationMode.raml +++ b/api-specs/api/types/cart/TaxCalculationMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#taxcalculationmode displayName: TaxCalculationMode type: string description: | diff --git a/api-specs/api/types/cart/TaxMode.raml b/api-specs/api/types/cart/TaxMode.raml index d873ccf51e..36abf4d37c 100644 --- a/api-specs/api/types/cart/TaxMode.raml +++ b/api-specs/api/types/cart/TaxMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#taxmode displayName: TaxMode type: string description: | @@ -27,6 +26,8 @@ enum: Price-specific update actions on Carts require external recalculation of the total gross price. Hence, the `externalTaxAmount` is removed in these cases and must be reset with [Set LineItem TaxAmount](ctp:api:type:CartSetLineItemTaxAmountAction), [Set CustomLineItem TaxAmount](ctp:api:type:CartSetCustomLineItemTaxAmountAction), or [Set ShippingMethod TaxAmount](ctp:api:type:CartSetShippingMethodTaxAmountAction) update actions. + Also the Cart `taxedPrice` field must be explicitly set via [Set Cart Total Tax](ctp:api:type:CartSetCartTotalTaxAction). + Since the API currently does not offer an update action for setting the `taxedShippingPrice` field of a Cart with `ExternalAmount` tax mode, it will always be empty. Disabled: | No taxes are added to the Cart. diff --git a/api-specs/api/types/cart/TaxPortion.raml b/api-specs/api/types/cart/TaxPortion.raml index df3b965542..bbc9ccb19b 100644 --- a/api-specs/api/types/cart/TaxPortion.raml +++ b/api-specs/api/types/cart/TaxPortion.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#taxportion displayName: TaxPortion type: object description: | diff --git a/api-specs/api/types/cart/TaxPortionDraft.raml b/api-specs/api/types/cart/TaxPortionDraft.raml index 9d6e50039b..b847013a9e 100644 --- a/api-specs/api/types/cart/TaxPortionDraft.raml +++ b/api-specs/api/types/cart/TaxPortionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#taxportiondraft displayName: TaxPortionDraft type: object description: | diff --git a/api-specs/api/types/cart/TaxedItemPrice.raml b/api-specs/api/types/cart/TaxedItemPrice.raml index eb8f87fbeb..f2d078dae3 100644 --- a/api-specs/api/types/cart/TaxedItemPrice.raml +++ b/api-specs/api/types/cart/TaxedItemPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#taxeditemprice displayName: TaxedItemPrice type: object properties: @@ -12,6 +11,12 @@ properties: type: CentPrecisionMoney description: | Total gross amount of the Line Item or Custom Line Item. + taxPortions: + type: TaxPortion[] + description: | + Taxable portions added to the total net price. + + Calculated from the [TaxRates](ctp:api:type:TaxRate). totalTax?: type: CentPrecisionMoney description: | diff --git a/api-specs/api/types/cart/TaxedPrice.raml b/api-specs/api/types/cart/TaxedPrice.raml index 200bc4ca6d..30a6662763 100644 --- a/api-specs/api/types/cart/TaxedPrice.raml +++ b/api-specs/api/types/cart/TaxedPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#taxedprice displayName: TaxedPrice type: object properties: diff --git a/api-specs/api/types/cart/TaxedPriceDraft.raml b/api-specs/api/types/cart/TaxedPriceDraft.raml index 3fcc36b03d..68539b36cb 100644 --- a/api-specs/api/types/cart/TaxedPriceDraft.raml +++ b/api-specs/api/types/cart/TaxedPriceDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/orders-import#taxedpricedraft displayName: TaxedPriceDraft type: object properties: @@ -18,3 +17,7 @@ properties: Taxable portions added to the `totalGross`. Calculated from the [TaxRates](ctp:api:type:TaxRate). + totalTax?: + type: TypedMoneyDraft + description: | + Total tax applicable for the Cart or Order. diff --git a/api-specs/api/types/cart/updates/CartAddCustomLineItemAction.raml b/api-specs/api/types/cart/updates/CartAddCustomLineItemAction.raml index 6767dbb6f9..10e306ac1c 100644 --- a/api-specs/api/types/cart/updates/CartAddCustomLineItemAction.raml +++ b/api-specs/api/types/cart/updates/CartAddCustomLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-customlineitem type: CartUpdateAction displayName: CartAddCustomLineItemAction discriminatorValue: addCustomLineItem diff --git a/api-specs/api/types/cart/updates/CartAddCustomShippingMethodAction.raml b/api-specs/api/types/cart/updates/CartAddCustomShippingMethodAction.raml index eedc807495..0a6da19c9e 100644 --- a/api-specs/api/types/cart/updates/CartAddCustomShippingMethodAction.raml +++ b/api-specs/api/types/cart/updates/CartAddCustomShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-custom-shippingmethod type: CartUpdateAction displayName: CartCustomAddShippingMethodAction discriminatorValue: addCustomShippingMethod diff --git a/api-specs/api/types/cart/updates/CartAddDiscountCodeAction.raml b/api-specs/api/types/cart/updates/CartAddDiscountCodeAction.raml index 82e4c560ce..d9061ee0a8 100644 --- a/api-specs/api/types/cart/updates/CartAddDiscountCodeAction.raml +++ b/api-specs/api/types/cart/updates/CartAddDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-discountcode type: CartUpdateAction displayName: CartAddDiscountCodeAction discriminatorValue: addDiscountCode diff --git a/api-specs/api/types/cart/updates/CartAddItemShippingAddressAction.raml b/api-specs/api/types/cart/updates/CartAddItemShippingAddressAction.raml index bd4fb9f4e6..994912bebd 100644 --- a/api-specs/api/types/cart/updates/CartAddItemShippingAddressAction.raml +++ b/api-specs/api/types/cart/updates/CartAddItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-itemshippingaddress type: CartUpdateAction displayName: CartAddItemShippingAddressAction discriminatorValue: addItemShippingAddress diff --git a/api-specs/api/types/cart/updates/CartAddLineItemAction.raml b/api-specs/api/types/cart/updates/CartAddLineItemAction.raml index 6258f6dcd3..6a28ef57fd 100644 --- a/api-specs/api/types/cart/updates/CartAddLineItemAction.raml +++ b/api-specs/api/types/cart/updates/CartAddLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-lineitem type: CartUpdateAction displayName: CartAddLineItemAction discriminatorValue: addLineItem @@ -77,7 +76,11 @@ properties: externalTaxRate?: type: ExternalTaxRateDraft description: | - External Tax Rate for the Line Item, if the Cart has the `External` [TaxMode](ctp:api:type:TaxMode). + External Tax Rate for the Line Item, if the Cart has the `External` [TaxMode](ctp:api:type:TaxMode) and `Single` [ShippingMode](ctp:api:type:ShippingMode). + perMethodExternalTaxRate?: + type: MethodExternalTaxRateDraft[] + description: | + Sets the external Tax Rates for individual Shipping Methods, if the Cart has the `External` [TaxMode](ctp:api:type:TaxMode) and `Multiple` [ShippingMode](ctp:api:type:ShippingMode). inventoryMode?: type: InventoryMode description: | diff --git a/api-specs/api/types/cart/updates/CartAddPaymentAction.raml b/api-specs/api/types/cart/updates/CartAddPaymentAction.raml index 2a499405e1..672f05c490 100644 --- a/api-specs/api/types/cart/updates/CartAddPaymentAction.raml +++ b/api-specs/api/types/cart/updates/CartAddPaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-payment type: CartUpdateAction displayName: CartAddPaymentAction discriminatorValue: addPayment diff --git a/api-specs/api/types/cart/updates/CartAddShippingMethodAction.raml b/api-specs/api/types/cart/updates/CartAddShippingMethodAction.raml index 7bbb5b36b4..c1f514285c 100644 --- a/api-specs/api/types/cart/updates/CartAddShippingMethodAction.raml +++ b/api-specs/api/types/cart/updates/CartAddShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-shippingmethod type: CartUpdateAction displayName: CartAddShippingMethodAction discriminatorValue: addShippingMethod diff --git a/api-specs/api/types/cart/updates/CartAddShoppingListAction.raml b/api-specs/api/types/cart/updates/CartAddShoppingListAction.raml index 776ad50487..ff7212d336 100644 --- a/api-specs/api/types/cart/updates/CartAddShoppingListAction.raml +++ b/api-specs/api/types/cart/updates/CartAddShoppingListAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#add-shopping-list type: CartUpdateAction displayName: CartAddShoppingListAction discriminatorValue: addShoppingList diff --git a/api-specs/api/types/cart/updates/CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction.raml b/api-specs/api/types/cart/updates/CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction.raml index ac4531e94b..8ed336c1f5 100644 --- a/api-specs/api/types/cart/updates/CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction.raml +++ b/api-specs/api/types/cart/updates/CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#apply-deltatocustomlineitemshippingdetailstargets type: CartUpdateAction displayName: CartApplyDeltaToCustomLineItemShippingDetailsTargetsAction discriminatorValue: applyDeltaToCustomLineItemShippingDetailsTargets diff --git a/api-specs/api/types/cart/updates/CartApplyDeltaToLineItemShippingDetailsTargetsAction.raml b/api-specs/api/types/cart/updates/CartApplyDeltaToLineItemShippingDetailsTargetsAction.raml index 5dcaefcffd..b3d03f81fd 100644 --- a/api-specs/api/types/cart/updates/CartApplyDeltaToLineItemShippingDetailsTargetsAction.raml +++ b/api-specs/api/types/cart/updates/CartApplyDeltaToLineItemShippingDetailsTargetsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#apply-deltatolineitemshippingdetailstargets type: CartUpdateAction displayName: CartApplyDeltaToLineItemShippingDetailsTargetsAction discriminatorValue: applyDeltaToLineItemShippingDetailsTargets diff --git a/api-specs/api/types/cart/updates/CartChangeCustomLineItemMoneyAction.raml b/api-specs/api/types/cart/updates/CartChangeCustomLineItemMoneyAction.raml index 3ee35da721..4f0c978c38 100644 --- a/api-specs/api/types/cart/updates/CartChangeCustomLineItemMoneyAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeCustomLineItemMoneyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#change-customlineitem-money type: CartUpdateAction displayName: CartChangeCustomLineItemMoneyAction discriminatorValue: changeCustomLineItemMoney diff --git a/api-specs/api/types/cart/updates/CartChangeCustomLineItemPriceModeAction.raml b/api-specs/api/types/cart/updates/CartChangeCustomLineItemPriceModeAction.raml index 4e8deeb10c..dda323da4f 100644 --- a/api-specs/api/types/cart/updates/CartChangeCustomLineItemPriceModeAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeCustomLineItemPriceModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customlineitem-price-mode type: CartUpdateAction displayName: CartChangeCustomLineItemPriceModeAction discriminatorValue: changeCustomLineItemPriceMode diff --git a/api-specs/api/types/cart/updates/CartChangeCustomLineItemQuantityAction.raml b/api-specs/api/types/cart/updates/CartChangeCustomLineItemQuantityAction.raml index 94b59b7ec3..1f75028042 100644 --- a/api-specs/api/types/cart/updates/CartChangeCustomLineItemQuantityAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeCustomLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#change-customlineitem-quantity type: CartUpdateAction displayName: CartChangeCustomLineItemQuantityAction discriminatorValue: changeCustomLineItemQuantity diff --git a/api-specs/api/types/cart/updates/CartChangeLineItemQuantityAction.raml b/api-specs/api/types/cart/updates/CartChangeLineItemQuantityAction.raml index 5aa4b22374..82ccdb40f7 100644 --- a/api-specs/api/types/cart/updates/CartChangeLineItemQuantityAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#change-lineitem-quantity type: CartUpdateAction displayName: CartChangeLineItemQuantityAction discriminatorValue: changeLineItemQuantity diff --git a/api-specs/api/types/cart/updates/CartChangeTaxCalculationModeAction.raml b/api-specs/api/types/cart/updates/CartChangeTaxCalculationModeAction.raml index 44da2c80a2..467a654a15 100644 --- a/api-specs/api/types/cart/updates/CartChangeTaxCalculationModeAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeTaxCalculationModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#change-taxcalculationmode type: CartUpdateAction displayName: CartChangeTaxCalculationModeAction discriminatorValue: changeTaxCalculationMode diff --git a/api-specs/api/types/cart/updates/CartChangeTaxModeAction.raml b/api-specs/api/types/cart/updates/CartChangeTaxModeAction.raml index 1019f87dec..1740af423e 100644 --- a/api-specs/api/types/cart/updates/CartChangeTaxModeAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeTaxModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#change-taxmode type: CartUpdateAction displayName: CartChangeTaxModeAction discriminatorValue: changeTaxMode diff --git a/api-specs/api/types/cart/updates/CartChangeTaxRoundingModeAction.raml b/api-specs/api/types/cart/updates/CartChangeTaxRoundingModeAction.raml index cf6f06f255..f3e6af4267 100644 --- a/api-specs/api/types/cart/updates/CartChangeTaxRoundingModeAction.raml +++ b/api-specs/api/types/cart/updates/CartChangeTaxRoundingModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#change-tax-roundingmode type: CartUpdateAction displayName: CartChangeTaxRoundingModeAction discriminatorValue: changeTaxRoundingMode diff --git a/api-specs/api/types/cart/updates/CartFreezeCartAction.raml b/api-specs/api/types/cart/updates/CartFreezeCartAction.raml index 5631d7b5d1..202a955074 100644 --- a/api-specs/api/types/cart/updates/CartFreezeCartAction.raml +++ b/api-specs/api/types/cart/updates/CartFreezeCartAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#freeze-cart type: CartUpdateAction displayName: CartFreezeCartAction discriminatorValue: freezeCart diff --git a/api-specs/api/types/cart/updates/CartRecalculateAction.raml b/api-specs/api/types/cart/updates/CartRecalculateAction.raml index fadb5408b3..dc6f7a9b70 100644 --- a/api-specs/api/types/cart/updates/CartRecalculateAction.raml +++ b/api-specs/api/types/cart/updates/CartRecalculateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#recalculate type: CartUpdateAction displayName: CartRecalculateAction discriminatorValue: recalculate diff --git a/api-specs/api/types/cart/updates/CartRemoveCustomLineItemAction.raml b/api-specs/api/types/cart/updates/CartRemoveCustomLineItemAction.raml index 34d575de61..8631af7161 100644 --- a/api-specs/api/types/cart/updates/CartRemoveCustomLineItemAction.raml +++ b/api-specs/api/types/cart/updates/CartRemoveCustomLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#remove-customlineitem type: CartUpdateAction displayName: CartRemoveCustomLineItemAction discriminatorValue: removeCustomLineItem diff --git a/api-specs/api/types/cart/updates/CartRemoveDiscountCodeAction.raml b/api-specs/api/types/cart/updates/CartRemoveDiscountCodeAction.raml index 4a02f01754..5b2468104b 100644 --- a/api-specs/api/types/cart/updates/CartRemoveDiscountCodeAction.raml +++ b/api-specs/api/types/cart/updates/CartRemoveDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#remove-discountcode type: CartUpdateAction displayName: CartRemoveDiscountCodeAction discriminatorValue: removeDiscountCode diff --git a/api-specs/api/types/cart/updates/CartRemoveItemShippingAddressAction.raml b/api-specs/api/types/cart/updates/CartRemoveItemShippingAddressAction.raml index c92122fb64..6549bd491a 100644 --- a/api-specs/api/types/cart/updates/CartRemoveItemShippingAddressAction.raml +++ b/api-specs/api/types/cart/updates/CartRemoveItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#remove-itemshippingaddress type: CartUpdateAction displayName: CartRemoveItemShippingAddressAction discriminatorValue: removeItemShippingAddress diff --git a/api-specs/api/types/cart/updates/CartRemoveLineItemAction.raml b/api-specs/api/types/cart/updates/CartRemoveLineItemAction.raml index 8112f01de1..f52860afeb 100644 --- a/api-specs/api/types/cart/updates/CartRemoveLineItemAction.raml +++ b/api-specs/api/types/cart/updates/CartRemoveLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#remove-lineitem type: CartUpdateAction displayName: CartRemoveLineItemAction discriminatorValue: removeLineItem diff --git a/api-specs/api/types/cart/updates/CartRemovePaymentAction.raml b/api-specs/api/types/cart/updates/CartRemovePaymentAction.raml index cb77ae6d02..1cc7209342 100644 --- a/api-specs/api/types/cart/updates/CartRemovePaymentAction.raml +++ b/api-specs/api/types/cart/updates/CartRemovePaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#remove-payment type: CartUpdateAction displayName: CartRemovePaymentAction discriminatorValue: removePayment diff --git a/api-specs/api/types/cart/updates/CartRemoveShippingMethodAction.raml b/api-specs/api/types/cart/updates/CartRemoveShippingMethodAction.raml index 7911de0913..524f4cbc83 100644 --- a/api-specs/api/types/cart/updates/CartRemoveShippingMethodAction.raml +++ b/api-specs/api/types/cart/updates/CartRemoveShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#remove-shipping-method type: CartUpdateAction displayName: CartRemoveShippingMethodAction discriminatorValue: removeShippingMethod diff --git a/api-specs/api/types/cart/updates/CartSetAnonymousIdAction.raml b/api-specs/api/types/cart/updates/CartSetAnonymousIdAction.raml index 39b6d275ee..fca02b8ba4 100644 --- a/api-specs/api/types/cart/updates/CartSetAnonymousIdAction.raml +++ b/api-specs/api/types/cart/updates/CartSetAnonymousIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-anonymous-id type: CartUpdateAction displayName: CartSetAnonymousIdAction discriminatorValue: setAnonymousId diff --git a/api-specs/api/types/cart/updates/CartSetBillingAddressAction.raml b/api-specs/api/types/cart/updates/CartSetBillingAddressAction.raml index c125cd7f8d..e24d976572 100644 --- a/api-specs/api/types/cart/updates/CartSetBillingAddressAction.raml +++ b/api-specs/api/types/cart/updates/CartSetBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-billing-address type: CartUpdateAction displayName: CartSetBillingAddressAction discriminatorValue: setBillingAddress diff --git a/api-specs/api/types/cart/updates/CartSetBillingAddressCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetBillingAddressCustomFieldAction.raml index 127d27165e..b32cd201a8 100644 --- a/api-specs/api/types/cart/updates/CartSetBillingAddressCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetBillingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-billing-address-customfield type: CartUpdateAction displayName: CartSetBillingAddressCustomFieldAction discriminatorValue: setBillingAddressCustomField diff --git a/api-specs/api/types/cart/updates/CartSetBillingAddressCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetBillingAddressCustomTypeAction.raml index de3f804ca7..d34aed5247 100644 --- a/api-specs/api/types/cart/updates/CartSetBillingAddressCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetBillingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-billing-address-custom-type type: CartUpdateAction displayName: CartSetBillingAddressCustomTypeAction discriminatorValue: setBillingAddressCustomType diff --git a/api-specs/api/types/cart/updates/CartSetBusinessUnitAction.raml b/api-specs/api/types/cart/updates/CartSetBusinessUnitAction.raml index 92a35782ce..618a2674a6 100644 --- a/api-specs/api/types/cart/updates/CartSetBusinessUnitAction.raml +++ b/api-specs/api/types/cart/updates/CartSetBusinessUnitAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-business-unit type: CartUpdateAction displayName: CartSetBusinessUnitAction discriminatorValue: setBusinessUnit diff --git a/api-specs/api/types/cart/updates/CartSetCartTotalTaxAction.raml b/api-specs/api/types/cart/updates/CartSetCartTotalTaxAction.raml index 7b61e22d87..c81f08a3f7 100644 --- a/api-specs/api/types/cart/updates/CartSetCartTotalTaxAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCartTotalTaxAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-cart-total-tax type: CartUpdateAction displayName: CartSetCartTotalTaxAction discriminatorValue: setCartTotalTax diff --git a/api-specs/api/types/cart/updates/CartSetCountryAction.raml b/api-specs/api/types/cart/updates/CartSetCountryAction.raml index c80648e371..22ce348de8 100644 --- a/api-specs/api/types/cart/updates/CartSetCountryAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCountryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-country type: CartUpdateAction displayName: CartSetCountryAction discriminatorValue: setCountry diff --git a/api-specs/api/types/cart/updates/CartSetCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetCustomFieldAction.raml index 783997d05b..e83b24c6f0 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customfield type: CartUpdateAction displayName: CartSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomFieldAction.raml index 27568121a7..19e05b572d 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customlineitem-customfield type: CartUpdateAction displayName: CartSetCustomLineItemCustomFieldAction discriminatorValue: setCustomLineItemCustomField diff --git a/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomTypeAction.raml index baa31d410b..1a1cf143a2 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customlineitem-custom-type type: CartUpdateAction displayName: CartSetCustomLineItemCustomTypeAction discriminatorValue: setCustomLineItemCustomType diff --git a/api-specs/api/types/cart/updates/CartSetCustomLineItemShippingDetailsAction.raml b/api-specs/api/types/cart/updates/CartSetCustomLineItemShippingDetailsAction.raml index 68ea2b94bc..c3d713f94e 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customlineitem-shippingdetails type: CartUpdateAction displayName: CartSetCustomLineItemShippingDetailsAction discriminatorValue: setCustomLineItemShippingDetails diff --git a/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxAmountAction.raml b/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxAmountAction.raml index a9c4261579..6156f2fe33 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxAmountAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxAmountAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customlineitem-taxamount type: CartUpdateAction displayName: CartSetCustomLineItemTaxAmountAction discriminatorValue: setCustomLineItemTaxAmount diff --git a/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxRateAction.raml b/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxRateAction.raml index 26904ed96a..967ce32b90 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxRateAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomLineItemTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customlineitem-taxrate type: CartUpdateAction displayName: CartSetCustomLineItemTaxRateAction discriminatorValue: setCustomLineItemTaxRate diff --git a/api-specs/api/types/cart/updates/CartSetCustomShippingMethodAction.raml b/api-specs/api/types/cart/updates/CartSetCustomShippingMethodAction.raml index c5b6b54aff..f2b6abe079 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomShippingMethodAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-custom-shipping-method type: CartUpdateAction displayName: CartSetCustomShippingMethodAction discriminatorValue: setCustomShippingMethod diff --git a/api-specs/api/types/cart/updates/CartSetCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetCustomTypeAction.raml index a9ffabe9df..88aadae842 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-custom-type type: CartUpdateAction displayName: CartSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/cart/updates/CartSetCustomerEmailAction.raml b/api-specs/api/types/cart/updates/CartSetCustomerEmailAction.raml index 3f06babdd5..327f42dfc5 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomerEmailAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomerEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customer-email type: CartUpdateAction displayName: CartSetCustomerEmailAction discriminatorValue: setCustomerEmail diff --git a/api-specs/api/types/cart/updates/CartSetCustomerGroupAction.raml b/api-specs/api/types/cart/updates/CartSetCustomerGroupAction.raml index c0123be273..e40f6bccac 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomerGroupAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomerGroupAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customer-group type: CartUpdateAction displayName: CartSetCustomerGroupAction discriminatorValue: setCustomerGroup diff --git a/api-specs/api/types/cart/updates/CartSetCustomerIdAction.raml b/api-specs/api/types/cart/updates/CartSetCustomerIdAction.raml index 6688137184..a5cec1d07b 100644 --- a/api-specs/api/types/cart/updates/CartSetCustomerIdAction.raml +++ b/api-specs/api/types/cart/updates/CartSetCustomerIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-customer-id type: CartUpdateAction displayName: CartSetCustomerIdAction discriminatorValue: setCustomerId diff --git a/api-specs/api/types/cart/updates/CartSetDeleteDaysAfterLastModificationAction.raml b/api-specs/api/types/cart/updates/CartSetDeleteDaysAfterLastModificationAction.raml index 55eeac525e..26632c4162 100644 --- a/api-specs/api/types/cart/updates/CartSetDeleteDaysAfterLastModificationAction.raml +++ b/api-specs/api/types/cart/updates/CartSetDeleteDaysAfterLastModificationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-deletedaysafterlastmodification-beta type: CartUpdateAction displayName: CartSetDeleteDaysAfterLastModificationAction discriminatorValue: setDeleteDaysAfterLastModification diff --git a/api-specs/api/types/cart/updates/CartSetDirectDiscountsAction.raml b/api-specs/api/types/cart/updates/CartSetDirectDiscountsAction.raml index 5131d6476c..bf4eba63b1 100644 --- a/api-specs/api/types/cart/updates/CartSetDirectDiscountsAction.raml +++ b/api-specs/api/types/cart/updates/CartSetDirectDiscountsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-directdiscount type: CartUpdateAction displayName: CartSetDirectDiscountsAction discriminatorValue: setDirectDiscounts diff --git a/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomFieldAction.raml index db25733350..3aaa63b817 100644 --- a/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-itemshipping-address-customfield type: CartUpdateAction displayName: CartSetItemShippingAddressCustomFieldAction discriminatorValue: setItemShippingAddressCustomField diff --git a/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomTypeAction.raml index 9a084e9a4a..f51d76c82c 100644 --- a/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetItemShippingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-itemshipping-address-custom-type type: CartUpdateAction displayName: CartSetItemShippingAddressCustomTypeAction discriminatorValue: setItemShippingAddressCustomType diff --git a/api-specs/api/types/cart/updates/CartSetKeyAction.raml b/api-specs/api/types/cart/updates/CartSetKeyAction.raml index 6ed0c4fa52..36d414312f 100644 --- a/api-specs/api/types/cart/updates/CartSetKeyAction.raml +++ b/api-specs/api/types/cart/updates/CartSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-key type: CartUpdateAction displayName: CartSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/cart/updates/CartSetLineItemCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemCustomFieldAction.raml index 18441b1c05..157f0b6d0e 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-customfield type: CartUpdateAction displayName: CartSetLineItemCustomFieldAction discriminatorValue: setLineItemCustomField diff --git a/api-specs/api/types/cart/updates/CartSetLineItemCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemCustomTypeAction.raml index ebe5f62192..ce303ab7c2 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-custom-type type: CartUpdateAction displayName: CartSetLineItemCustomTypeAction discriminatorValue: setLineItemCustomType diff --git a/api-specs/api/types/cart/updates/CartSetLineItemDistributionChannelAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemDistributionChannelAction.raml index 3335de83f6..8e8d8479f6 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemDistributionChannelAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemDistributionChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-distributionchannel type: CartUpdateAction displayName: CartSetLineItemDistributionChannelAction discriminatorValue: setLineItemDistributionChannel diff --git a/api-specs/api/types/cart/updates/CartSetLineItemInventoryModeAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemInventoryModeAction.raml index 43bff1ca76..af481bfce3 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemInventoryModeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemInventoryModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-inventorymode type: CartUpdateAction displayName: CartSetLineItemInventoryModeAction discriminatorValue: setLineItemInventoryMode diff --git a/api-specs/api/types/cart/updates/CartSetLineItemPriceAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemPriceAction.raml index efd396977a..ddf9d91afe 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemPriceAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-price type: CartUpdateAction displayName: CartSetLineItemPriceAction discriminatorValue: setLineItemPrice diff --git a/api-specs/api/types/cart/updates/CartSetLineItemShippingDetailsAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemShippingDetailsAction.raml index 762f0d93de..ab6592f4f4 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-shippingdetails type: CartUpdateAction displayName: CartSetLineItemShippingDetailsAction discriminatorValue: setLineItemShippingDetails diff --git a/api-specs/api/types/cart/updates/CartSetLineItemSupplyChannelAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemSupplyChannelAction.raml index 8f59b4c83d..7b661c410f 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemSupplyChannelAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemSupplyChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-supplychannel type: CartUpdateAction displayName: CartSetLineItemSupplyChannelAction discriminatorValue: setLineItemSupplyChannel diff --git a/api-specs/api/types/cart/updates/CartSetLineItemTaxAmountAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemTaxAmountAction.raml index 7ee40456b7..d4b6515d84 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemTaxAmountAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemTaxAmountAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-taxamount type: CartUpdateAction displayName: CartSetLineItemTaxAmountAction discriminatorValue: setLineItemTaxAmount diff --git a/api-specs/api/types/cart/updates/CartSetLineItemTaxRateAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemTaxRateAction.raml index 6b79e376b6..6dab62c8dc 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemTaxRateAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-taxrate type: CartUpdateAction displayName: CartSetLineItemTaxRateAction discriminatorValue: setLineItemTaxRate diff --git a/api-specs/api/types/cart/updates/CartSetLineItemTotalPriceAction.raml b/api-specs/api/types/cart/updates/CartSetLineItemTotalPriceAction.raml index d77dd55e70..089ccf726f 100644 --- a/api-specs/api/types/cart/updates/CartSetLineItemTotalPriceAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLineItemTotalPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-lineitem-totalprice type: CartUpdateAction displayName: CartSetLineItemTotalPriceAction discriminatorValue: setLineItemTotalPrice diff --git a/api-specs/api/types/cart/updates/CartSetLocaleAction.raml b/api-specs/api/types/cart/updates/CartSetLocaleAction.raml index 40046a82f7..76ce9043e5 100644 --- a/api-specs/api/types/cart/updates/CartSetLocaleAction.raml +++ b/api-specs/api/types/cart/updates/CartSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-locale type: CartUpdateAction displayName: CartSetLocaleAction discriminatorValue: setLocale diff --git a/api-specs/api/types/cart/updates/CartSetShippingAddressAction.raml b/api-specs/api/types/cart/updates/CartSetShippingAddressAction.raml index 5f240590a4..70ec192e7c 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingAddressAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-address type: CartUpdateAction displayName: CartSetShippingAddressAction discriminatorValue: setShippingAddress diff --git a/api-specs/api/types/cart/updates/CartSetShippingAddressCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetShippingAddressCustomFieldAction.raml index 3cb3e751db..c95d25fc2d 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingAddressCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-address-customfield type: CartUpdateAction displayName: CartSetShippingAddressCustomFieldAction discriminatorValue: setShippingAddressCustomField diff --git a/api-specs/api/types/cart/updates/CartSetShippingAddressCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetShippingAddressCustomTypeAction.raml index 25951a4e0c..2bb2e770d9 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingAddressCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-address-custom-type type: CartUpdateAction displayName: CartSetShippingAddressCustomTypeAction discriminatorValue: setShippingAddressCustomType diff --git a/api-specs/api/types/cart/updates/CartSetShippingCustomFieldAction.raml b/api-specs/api/types/cart/updates/CartSetShippingCustomFieldAction.raml index 0a6122629a..fa5fbf36e2 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingCustomFieldAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-customfield type: CartUpdateAction displayName: CartSetShippingCustomFieldAction discriminatorValue: setShippingCustomField diff --git a/api-specs/api/types/cart/updates/CartSetShippingCustomTypeAction.raml b/api-specs/api/types/cart/updates/CartSetShippingCustomTypeAction.raml index 3ded071ea9..ebee5dc32e 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingCustomTypeAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-custom-type type: CartUpdateAction displayName: CartSetShippingCustomTypeAction discriminatorValue: setShippingCustomType diff --git a/api-specs/api/types/cart/updates/CartSetShippingMethodAction.raml b/api-specs/api/types/cart/updates/CartSetShippingMethodAction.raml index 465b01e041..f6a1b15380 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingMethodAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-method type: CartUpdateAction displayName: CartSetShippingMethodAction discriminatorValue: setShippingMethod diff --git a/api-specs/api/types/cart/updates/CartSetShippingMethodTaxAmountAction.raml b/api-specs/api/types/cart/updates/CartSetShippingMethodTaxAmountAction.raml index 5cb1e0a130..2854a0be0f 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingMethodTaxAmountAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingMethodTaxAmountAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shippingmethod-taxamount type: CartUpdateAction displayName: CartSetShippingMethodTaxAmountAction discriminatorValue: setShippingMethodTaxAmount diff --git a/api-specs/api/types/cart/updates/CartSetShippingMethodTaxRateAction.raml b/api-specs/api/types/cart/updates/CartSetShippingMethodTaxRateAction.raml index b7b27048db..4e762ff15d 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingMethodTaxRateAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingMethodTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shippingmethod-taxrate type: CartUpdateAction displayName: CartSetShippingMethodTaxRateAction discriminatorValue: setShippingMethodTaxRate diff --git a/api-specs/api/types/cart/updates/CartSetShippingRateInputAction.raml b/api-specs/api/types/cart/updates/CartSetShippingRateInputAction.raml index 4130b727e7..01dc3eaaa4 100644 --- a/api-specs/api/types/cart/updates/CartSetShippingRateInputAction.raml +++ b/api-specs/api/types/cart/updates/CartSetShippingRateInputAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#set-shipping-rate-input type: CartUpdateAction displayName: CartSetShippingRateInputAction discriminatorValue: setShippingRateInput diff --git a/api-specs/api/types/cart/updates/CartUnfreezeCartAction.raml b/api-specs/api/types/cart/updates/CartUnfreezeCartAction.raml index 92facc1dc4..fecc65bf0c 100644 --- a/api-specs/api/types/cart/updates/CartUnfreezeCartAction.raml +++ b/api-specs/api/types/cart/updates/CartUnfreezeCartAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#unfreeze-cart type: CartUpdateAction displayName: CartUnfreezeCartAction discriminatorValue: unfreezeCart diff --git a/api-specs/api/types/cart/updates/CartUpdateItemShippingAddressAction.raml b/api-specs/api/types/cart/updates/CartUpdateItemShippingAddressAction.raml index d8530c23d0..95e3f9065c 100644 --- a/api-specs/api/types/cart/updates/CartUpdateItemShippingAddressAction.raml +++ b/api-specs/api/types/cart/updates/CartUpdateItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/api/projects/carts#update-itemshippingaddress type: CartUpdateAction displayName: CartUpdateItemShippingAddressAction discriminatorValue: updateItemShippingAddress diff --git a/api-specs/api/types/category/Category.raml b/api-specs/api/types/category/Category.raml index 5ee61a078a..3427694025 100644 --- a/api-specs/api/types/category/Category.raml +++ b/api-specs/api/types/category/Category.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#category displayName: Category (updateType): CategoryUpdate type: BaseResource @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Category. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Category. name: type: LocalizedString description: | @@ -59,11 +58,11 @@ properties: orderHint: type: string description: | - Decimal value between 0 and 1 used to order Categories that are on the same level in the Category tree. + Decimal value between 0 and 1. Frontend applications can use this value for ordering Categories within the same level in the category tree. externalId?: type: string description: | - Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP). metaTitle?: type: LocalizedString description: | diff --git a/api-specs/api/types/category/CategoryDraft.raml b/api-specs/api/types/category/CategoryDraft.raml index 840ff1f9ac..e8f6b029e4 100644 --- a/api-specs/api/types/category/CategoryDraft.raml +++ b/api-specs/api/types/category/CategoryDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#categorydraft displayName: CategoryDraft type: object properties: @@ -26,12 +25,12 @@ properties: orderHint?: type: string description: | - Decimal value between 0 and 1 used to order Categories that are on the same level in the Category tree. + Decimal value between 0 and 1. Frontend applications can use this value for ordering Categories within the same level in the category tree. If not set, a random value will be assigned. externalId?: type: string description: | - Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP). metaTitle?: type: LocalizedString description: | diff --git a/api-specs/api/types/category/CategoryReference.raml b/api-specs/api/types/category/CategoryReference.raml index 2222284e67..c6e7e4fc79 100644 --- a/api-specs/api/types/category/CategoryReference.raml +++ b/api-specs/api/types/category/CategoryReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#categoryreference type: Reference displayName: CategoryReference discriminatorValue: category diff --git a/api-specs/api/types/category/CategoryResourceIdentifier.raml b/api-specs/api/types/category/CategoryResourceIdentifier.raml index 0cd0863a4d..028aa51023 100644 --- a/api-specs/api/types/category/CategoryResourceIdentifier.raml +++ b/api-specs/api/types/category/CategoryResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#categoryresourceidentifier type: ResourceIdentifier displayName: CategoryResourceIdentifier discriminatorValue: category diff --git a/api-specs/api/types/category/updates/CategoryAddAssetAction.raml b/api-specs/api/types/category/updates/CategoryAddAssetAction.raml index fef592f158..b337464efc 100644 --- a/api-specs/api/types/category/updates/CategoryAddAssetAction.raml +++ b/api-specs/api/types/category/updates/CategoryAddAssetAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#add-asset type: CategoryUpdateAction displayName: CategoryAddAssetAction discriminatorValue: addAsset diff --git a/api-specs/api/types/category/updates/CategoryChangeAssetNameAction.raml b/api-specs/api/types/category/updates/CategoryChangeAssetNameAction.raml index 264995c02a..f2eb0d54af 100644 --- a/api-specs/api/types/category/updates/CategoryChangeAssetNameAction.raml +++ b/api-specs/api/types/category/updates/CategoryChangeAssetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#change-asset-name type: CategoryUpdateAction displayName: CategoryChangeAssetNameAction discriminatorValue: changeAssetName diff --git a/api-specs/api/types/category/updates/CategoryChangeAssetOrderAction.raml b/api-specs/api/types/category/updates/CategoryChangeAssetOrderAction.raml index a8860b6129..ce713d3a1f 100644 --- a/api-specs/api/types/category/updates/CategoryChangeAssetOrderAction.raml +++ b/api-specs/api/types/category/updates/CategoryChangeAssetOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#change-asset-order type: CategoryUpdateAction displayName: CategoryChangeAssetOrderAction discriminatorValue: changeAssetOrder diff --git a/api-specs/api/types/category/updates/CategoryChangeNameAction.raml b/api-specs/api/types/category/updates/CategoryChangeNameAction.raml index c7a881f0c7..53e9844c8f 100644 --- a/api-specs/api/types/category/updates/CategoryChangeNameAction.raml +++ b/api-specs/api/types/category/updates/CategoryChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#change-name type: CategoryUpdateAction displayName: CategoryChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/category/updates/CategoryChangeOrderHintAction.raml b/api-specs/api/types/category/updates/CategoryChangeOrderHintAction.raml index ced854c1ec..d63bc839ac 100644 --- a/api-specs/api/types/category/updates/CategoryChangeOrderHintAction.raml +++ b/api-specs/api/types/category/updates/CategoryChangeOrderHintAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#change-orderhint type: CategoryUpdateAction displayName: CategoryChangeOrderHintAction discriminatorValue: changeOrderHint diff --git a/api-specs/api/types/category/updates/CategoryChangeParentAction.raml b/api-specs/api/types/category/updates/CategoryChangeParentAction.raml index f217fbc9dc..2011eaa235 100644 --- a/api-specs/api/types/category/updates/CategoryChangeParentAction.raml +++ b/api-specs/api/types/category/updates/CategoryChangeParentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#change-parent type: CategoryUpdateAction displayName: CategoryChangeParentAction discriminatorValue: changeParent diff --git a/api-specs/api/types/category/updates/CategoryChangeSlugAction.raml b/api-specs/api/types/category/updates/CategoryChangeSlugAction.raml index c63d26f41a..8dc9abfad2 100644 --- a/api-specs/api/types/category/updates/CategoryChangeSlugAction.raml +++ b/api-specs/api/types/category/updates/CategoryChangeSlugAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#change-slug type: CategoryUpdateAction displayName: CategoryChangeSlugAction discriminatorValue: changeSlug diff --git a/api-specs/api/types/category/updates/CategoryRemoveAssetAction.raml b/api-specs/api/types/category/updates/CategoryRemoveAssetAction.raml index 8b25e8e116..cfa04e79ca 100644 --- a/api-specs/api/types/category/updates/CategoryRemoveAssetAction.raml +++ b/api-specs/api/types/category/updates/CategoryRemoveAssetAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#remove-asset type: CategoryUpdateAction displayName: CategoryRemoveAssetAction discriminatorValue: removeAsset diff --git a/api-specs/api/types/category/updates/CategorySetAssetCustomFieldAction.raml b/api-specs/api/types/category/updates/CategorySetAssetCustomFieldAction.raml index b3c70301f0..867b9580a4 100644 --- a/api-specs/api/types/category/updates/CategorySetAssetCustomFieldAction.raml +++ b/api-specs/api/types/category/updates/CategorySetAssetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-asset-custom-field type: CategoryUpdateAction displayName: CategorySetAssetCustomFieldAction discriminatorValue: setAssetCustomField diff --git a/api-specs/api/types/category/updates/CategorySetAssetCustomTypeAction.raml b/api-specs/api/types/category/updates/CategorySetAssetCustomTypeAction.raml index 6faee8034e..895f58efdd 100644 --- a/api-specs/api/types/category/updates/CategorySetAssetCustomTypeAction.raml +++ b/api-specs/api/types/category/updates/CategorySetAssetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-asset-custom-type type: CategoryUpdateAction displayName: CategorySetAssetCustomTypeAction discriminatorValue: setAssetCustomType diff --git a/api-specs/api/types/category/updates/CategorySetAssetDescriptionAction.raml b/api-specs/api/types/category/updates/CategorySetAssetDescriptionAction.raml index c1d8df5f7c..dd68c6b2fc 100644 --- a/api-specs/api/types/category/updates/CategorySetAssetDescriptionAction.raml +++ b/api-specs/api/types/category/updates/CategorySetAssetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-asset-description type: CategoryUpdateAction displayName: CategorySetAssetDescriptionAction discriminatorValue: setAssetDescription diff --git a/api-specs/api/types/category/updates/CategorySetAssetKeyAction.raml b/api-specs/api/types/category/updates/CategorySetAssetKeyAction.raml index 29105e4340..b23c02eecd 100644 --- a/api-specs/api/types/category/updates/CategorySetAssetKeyAction.raml +++ b/api-specs/api/types/category/updates/CategorySetAssetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-asset-key type: CategoryUpdateAction displayName: CategorySetAssetKeyAction discriminatorValue: setAssetKey diff --git a/api-specs/api/types/category/updates/CategorySetAssetSourcesAction.raml b/api-specs/api/types/category/updates/CategorySetAssetSourcesAction.raml index 79338a950c..1c29b3f9e7 100644 --- a/api-specs/api/types/category/updates/CategorySetAssetSourcesAction.raml +++ b/api-specs/api/types/category/updates/CategorySetAssetSourcesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-asset-sources type: CategoryUpdateAction displayName: CategorySetAssetSourcesAction discriminatorValue: setAssetSources diff --git a/api-specs/api/types/category/updates/CategorySetAssetTagsAction.raml b/api-specs/api/types/category/updates/CategorySetAssetTagsAction.raml index e0c68de3b3..9ec9c8c85e 100644 --- a/api-specs/api/types/category/updates/CategorySetAssetTagsAction.raml +++ b/api-specs/api/types/category/updates/CategorySetAssetTagsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-asset-tags type: CategoryUpdateAction displayName: CategorySetAssetTagsAction discriminatorValue: setAssetTags diff --git a/api-specs/api/types/category/updates/CategorySetCustomFieldAction.raml b/api-specs/api/types/category/updates/CategorySetCustomFieldAction.raml index 6881094707..d2c3ff3477 100644 --- a/api-specs/api/types/category/updates/CategorySetCustomFieldAction.raml +++ b/api-specs/api/types/category/updates/CategorySetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-customfield type: CategoryUpdateAction displayName: CategorySetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/category/updates/CategorySetCustomTypeAction.raml b/api-specs/api/types/category/updates/CategorySetCustomTypeAction.raml index 4d6305dde5..c6618ca0f1 100644 --- a/api-specs/api/types/category/updates/CategorySetCustomTypeAction.raml +++ b/api-specs/api/types/category/updates/CategorySetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-custom-type type: CategoryUpdateAction displayName: CategorySetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/category/updates/CategorySetDescriptionAction.raml b/api-specs/api/types/category/updates/CategorySetDescriptionAction.raml index f1da8e76ca..c676e434ac 100644 --- a/api-specs/api/types/category/updates/CategorySetDescriptionAction.raml +++ b/api-specs/api/types/category/updates/CategorySetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-description type: CategoryUpdateAction displayName: CategorySetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/category/updates/CategorySetExternalIdAction.raml b/api-specs/api/types/category/updates/CategorySetExternalIdAction.raml index a96c3134b8..6b93de7b1f 100644 --- a/api-specs/api/types/category/updates/CategorySetExternalIdAction.raml +++ b/api-specs/api/types/category/updates/CategorySetExternalIdAction.raml @@ -1,12 +1,11 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-external-id type: CategoryUpdateAction displayName: CategorySetExternalIdAction discriminatorValue: setExternalId example: !include ../../../examples/Category/CategorySetExternalIdAction.json description: | - This update action sets a new ID that can be used as an additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + This update action sets a new ID that can be used as an additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP). properties: externalId?: type: string diff --git a/api-specs/api/types/category/updates/CategorySetKeyAction.raml b/api-specs/api/types/category/updates/CategorySetKeyAction.raml index 646beb6d60..36c48f2341 100644 --- a/api-specs/api/types/category/updates/CategorySetKeyAction.raml +++ b/api-specs/api/types/category/updates/CategorySetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-key type: CategoryUpdateAction displayName: CategorySetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/category/updates/CategorySetMetaDescriptionAction.raml b/api-specs/api/types/category/updates/CategorySetMetaDescriptionAction.raml index 80d9604944..a46de29019 100644 --- a/api-specs/api/types/category/updates/CategorySetMetaDescriptionAction.raml +++ b/api-specs/api/types/category/updates/CategorySetMetaDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-meta-description type: CategoryUpdateAction displayName: CategorySetMetaDescriptionAction discriminatorValue: setMetaDescription diff --git a/api-specs/api/types/category/updates/CategorySetMetaKeywordsAction.raml b/api-specs/api/types/category/updates/CategorySetMetaKeywordsAction.raml index 76e88cc1b2..c3ad36abf6 100644 --- a/api-specs/api/types/category/updates/CategorySetMetaKeywordsAction.raml +++ b/api-specs/api/types/category/updates/CategorySetMetaKeywordsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-meta-keywords type: CategoryUpdateAction displayName: CategorySetMetaKeywordsAction discriminatorValue: setMetaKeywords diff --git a/api-specs/api/types/category/updates/CategorySetMetaTitleAction.raml b/api-specs/api/types/category/updates/CategorySetMetaTitleAction.raml index d50b7dbd47..ff6b9b49f2 100644 --- a/api-specs/api/types/category/updates/CategorySetMetaTitleAction.raml +++ b/api-specs/api/types/category/updates/CategorySetMetaTitleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Category -(docs-uri): https://docs.commercetools.com/api/projects/categories#set-meta-title type: CategoryUpdateAction displayName: CategorySetMetaTitleAction discriminatorValue: setMetaTitle diff --git a/api-specs/api/types/channel/Channel.raml b/api-specs/api/types/channel/Channel.raml index 9a6b351f3d..994ace0544 100644 --- a/api-specs/api/types/channel/Channel.raml +++ b/api-specs/api/types/channel/Channel.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#channel displayName: Channel (updateType): ChannelUpdate type: BaseResource @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Channel. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Channel. key: type: string description: | diff --git a/api-specs/api/types/channel/ChannelDraft.raml b/api-specs/api/types/channel/ChannelDraft.raml index 2fd95258c7..2bfd88d529 100644 --- a/api-specs/api/types/channel/ChannelDraft.raml +++ b/api-specs/api/types/channel/ChannelDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#channeldraft displayName: ChannelDraft type: object properties: diff --git a/api-specs/api/types/channel/ChannelReference.raml b/api-specs/api/types/channel/ChannelReference.raml index 5343f2f95e..069c98ed80 100644 --- a/api-specs/api/types/channel/ChannelReference.raml +++ b/api-specs/api/types/channel/ChannelReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#channelreference type: Reference displayName: ChannelReference discriminatorValue: channel diff --git a/api-specs/api/types/channel/ChannelResourceIdentifier.raml b/api-specs/api/types/channel/ChannelResourceIdentifier.raml index e0797ee905..fd4c9bf385 100644 --- a/api-specs/api/types/channel/ChannelResourceIdentifier.raml +++ b/api-specs/api/types/channel/ChannelResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#channelresourceidentifier type: ResourceIdentifier displayName: ChannelResourceIdentifier discriminatorValue: channel diff --git a/api-specs/api/types/channel/ChannelRoleEnum.raml b/api-specs/api/types/channel/ChannelRoleEnum.raml index 125f48cbcc..af27245401 100644 --- a/api-specs/api/types/channel/ChannelRoleEnum.raml +++ b/api-specs/api/types/channel/ChannelRoleEnum.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#channelroleenum displayName: ChannelRoleEnum type: string description: | diff --git a/api-specs/api/types/channel/updates/ChannelAddRolesAction.raml b/api-specs/api/types/channel/updates/ChannelAddRolesAction.raml index 916e8026bb..6c263bbb2e 100644 --- a/api-specs/api/types/channel/updates/ChannelAddRolesAction.raml +++ b/api-specs/api/types/channel/updates/ChannelAddRolesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#add-roles type: ChannelUpdateAction displayName: ChannelAddRolesAction discriminatorValue: addRoles diff --git a/api-specs/api/types/channel/updates/ChannelChangeDescriptionAction.raml b/api-specs/api/types/channel/updates/ChannelChangeDescriptionAction.raml index 6bf08b37b4..1e7b66ac28 100644 --- a/api-specs/api/types/channel/updates/ChannelChangeDescriptionAction.raml +++ b/api-specs/api/types/channel/updates/ChannelChangeDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#change-description type: ChannelUpdateAction displayName: ChannelChangeDescriptionAction discriminatorValue: changeDescription diff --git a/api-specs/api/types/channel/updates/ChannelChangeKeyAction.raml b/api-specs/api/types/channel/updates/ChannelChangeKeyAction.raml index b0b335697c..23ac12ed14 100644 --- a/api-specs/api/types/channel/updates/ChannelChangeKeyAction.raml +++ b/api-specs/api/types/channel/updates/ChannelChangeKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#change-key type: ChannelUpdateAction displayName: ChannelChangeKeyAction discriminatorValue: changeKey diff --git a/api-specs/api/types/channel/updates/ChannelChangeNameAction.raml b/api-specs/api/types/channel/updates/ChannelChangeNameAction.raml index 13a40fe525..ab54f4ab6d 100644 --- a/api-specs/api/types/channel/updates/ChannelChangeNameAction.raml +++ b/api-specs/api/types/channel/updates/ChannelChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#change-name type: ChannelUpdateAction displayName: ChannelChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/channel/updates/ChannelRemoveRolesAction.raml b/api-specs/api/types/channel/updates/ChannelRemoveRolesAction.raml index 9e7df9ab84..f08564e2ef 100644 --- a/api-specs/api/types/channel/updates/ChannelRemoveRolesAction.raml +++ b/api-specs/api/types/channel/updates/ChannelRemoveRolesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#remove-roles type: ChannelUpdateAction displayName: ChannelRemoveRolesAction discriminatorValue: removeRoles diff --git a/api-specs/api/types/channel/updates/ChannelSetAddressAction.raml b/api-specs/api/types/channel/updates/ChannelSetAddressAction.raml index 05fe40ff9a..6bd14c3080 100644 --- a/api-specs/api/types/channel/updates/ChannelSetAddressAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-address type: ChannelUpdateAction displayName: ChannelSetAddressAction discriminatorValue: setAddress diff --git a/api-specs/api/types/channel/updates/ChannelSetAddressCustomFieldAction.raml b/api-specs/api/types/channel/updates/ChannelSetAddressCustomFieldAction.raml index d80d165cf4..227223ba65 100644 --- a/api-specs/api/types/channel/updates/ChannelSetAddressCustomFieldAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-customfield-in-address type: ChannelUpdateAction displayName: ChannelSetAddressCustomFieldAction discriminatorValue: setAddressCustomField diff --git a/api-specs/api/types/channel/updates/ChannelSetAddressCustomTypeAction.raml b/api-specs/api/types/channel/updates/ChannelSetAddressCustomTypeAction.raml index 015771847e..bc0129b3db 100644 --- a/api-specs/api/types/channel/updates/ChannelSetAddressCustomTypeAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-custom-type-in-address type: ChannelUpdateAction displayName: ChannelSetAddressCustomTypeAction discriminatorValue: setAddressCustomType diff --git a/api-specs/api/types/channel/updates/ChannelSetCustomFieldAction.raml b/api-specs/api/types/channel/updates/ChannelSetCustomFieldAction.raml index d1c8a106b4..cde84b64d4 100644 --- a/api-specs/api/types/channel/updates/ChannelSetCustomFieldAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-customfield type: ChannelUpdateAction displayName: ChannelSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/channel/updates/ChannelSetCustomTypeAction.raml b/api-specs/api/types/channel/updates/ChannelSetCustomTypeAction.raml index 73dd35ef9b..558e0adb92 100644 --- a/api-specs/api/types/channel/updates/ChannelSetCustomTypeAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-custom-type type: ChannelUpdateAction displayName: ChannelSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/channel/updates/ChannelSetGeoLocationAction.raml b/api-specs/api/types/channel/updates/ChannelSetGeoLocationAction.raml index a051dbbd8f..259d074a79 100644 --- a/api-specs/api/types/channel/updates/ChannelSetGeoLocationAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetGeoLocationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-geolocation type: ChannelUpdateAction displayName: ChannelSetGeoLocationAction discriminatorValue: setGeoLocation diff --git a/api-specs/api/types/channel/updates/ChannelSetRolesAction.raml b/api-specs/api/types/channel/updates/ChannelSetRolesAction.raml index b343e2141e..0ab02593aa 100644 --- a/api-specs/api/types/channel/updates/ChannelSetRolesAction.raml +++ b/api-specs/api/types/channel/updates/ChannelSetRolesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Channel -(docs-uri): https://docs.commercetools.com/api/projects/channels#set-roles type: ChannelUpdateAction displayName: ChannelSetRolesAction discriminatorValue: setRoles diff --git a/api-specs/api/types/common/Address.raml b/api-specs/api/types/common/Address.raml index c4dd68db13..ea14bf86cb 100644 --- a/api-specs/api/types/common/Address.raml +++ b/api-specs/api/types/common/Address.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/types#address displayName: Address type: BaseAddress description: | diff --git a/api-specs/api/types/common/AddressDraft.raml b/api-specs/api/types/common/AddressDraft.raml index 497b0c74dc..55c76e01d0 100644 --- a/api-specs/api/types/common/AddressDraft.raml +++ b/api-specs/api/types/common/AddressDraft.raml @@ -1,8 +1,8 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/types#addressdraft displayName: AddressDraft type: BaseAddress +example: !include ../../examples/Common/AddressDraft.json description: | Address type to be used on write methods. Optionally, use the `custom` field in addition to the fields of a [BaseAddress](ctp:api:type:BaseAddress). diff --git a/api-specs/api/types/common/Attribution.raml b/api-specs/api/types/common/Attribution.raml new file mode 100644 index 0000000000..a879a67b87 --- /dev/null +++ b/api-specs/api/types/common/Attribution.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +(package): Common +displayName: Attribution +type: object +description: Indicates the source and method that indirectly created or modified the resource. This is present on resources created or updated after 1 April 2024. +properties: + clientId?: + type: string + description: | + `id` of the [API Client](ctp:api:type:ApiClient) that created or modified the resource. + source: + type: AttributionSource + description: | + Method used to initiate the creation or modification of the resource. diff --git a/api-specs/api/types/common/AttributionSource.raml b/api-specs/api/types/common/AttributionSource.raml new file mode 100644 index 0000000000..18f08c4925 --- /dev/null +++ b/api-specs/api/types/common/AttributionSource.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 DataType +(package): Common +displayName: AttributionSource +type: string +enum: + - Import + - Export +(enumDescriptions): + Import: Resource was created or updated during import. + Export: Resource was created or updated during export. diff --git a/api-specs/api/types/common/BaseAddress.raml b/api-specs/api/types/common/BaseAddress.raml index 514983fc84..959f359820 100644 --- a/api-specs/api/types/common/BaseAddress.raml +++ b/api-specs/api/types/common/BaseAddress.raml @@ -1,12 +1,12 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/types#baseaddress displayName: BaseAddress type: object description: | Polymorphic base type that represents a postal address and contact details. Depending on the read or write action, it can be either [Address](ctp:api:type:Address) or [AddressDraft](ctp:api:type:AddressDraft) that only differ in the data type for the optional `custom` field. +(ignoreValidators): [PolymorphicSubtypesRule] properties: id?: type: string diff --git a/api-specs/api/types/common/BaseResource.raml b/api-specs/api/types/common/BaseResource.raml index e06d445922..8327310ad7 100644 --- a/api-specs/api/types/common/BaseResource.raml +++ b/api-specs/api/types/common/BaseResource.raml @@ -3,6 +3,7 @@ displayName: BaseResource type: object (abstract): true +(ignoreValidators): [PolymorphicSubtypesRule] properties: id: (identifier): true diff --git a/api-specs/api/types/common/CentPrecisionMoney.raml b/api-specs/api/types/common/CentPrecisionMoney.raml index 299a7f2e14..54f3924abe 100644 --- a/api-specs/api/types/common/CentPrecisionMoney.raml +++ b/api-specs/api/types/common/CentPrecisionMoney.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#money displayName: CentPrecisionMoney type: TypedMoney discriminatorValue: centPrecision diff --git a/api-specs/api/types/common/CentPrecisionMoneyDraft.raml b/api-specs/api/types/common/CentPrecisionMoneyDraft.raml index f00dca24be..1f783ba9b0 100644 --- a/api-specs/api/types/common/CentPrecisionMoneyDraft.raml +++ b/api-specs/api/types/common/CentPrecisionMoneyDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#money displayName: CentPrecisionMoneyDraft type: TypedMoneyDraft discriminatorValue: centPrecision diff --git a/api-specs/api/types/common/ClientLogging.raml b/api-specs/api/types/common/ClientLogging.raml index 3b9713aad9..f06d8d09d6 100644 --- a/api-specs/api/types/common/ClientLogging.raml +++ b/api-specs/api/types/common/ClientLogging.raml @@ -1,10 +1,10 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types#client-logging displayName: ClientLogging type: object description: | These objects represent information about which [API Client](/../api/projects/api-clients) created or modified a resource. For more information, see [Client Logging](/../api/general-concepts#client-logging). +(ignoreValidators): [PolymorphicSubtypesRule] properties: clientId?: type: string diff --git a/api-specs/api/types/common/CreatedBy.raml b/api-specs/api/types/common/CreatedBy.raml index c44bfd7e1c..a6ee5a18b0 100644 --- a/api-specs/api/types/common/CreatedBy.raml +++ b/api-specs/api/types/common/CreatedBy.raml @@ -2,7 +2,7 @@ (package): Common displayName: CreatedBy type: ClientLogging -description: Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). +description: IDs and references that created the resource. This is present on resources created after 1 February 2019 except for [events not tracked](/general-concepts#events-tracked). properties: clientId?: type: string @@ -21,6 +21,10 @@ properties: type: string description: | Indicates the [anonymous session](ctp:api:type:AnonymousSession) during which the resource was created. + attributedTo?: + type: Attribution + description: | + Indicates if the resource was created indirectly. associate?: type: CustomerReference description: | diff --git a/api-specs/api/types/common/DiscountedPrice.raml b/api-specs/api/types/common/DiscountedPrice.raml index ae50fc4d97..2d6874712d 100644 --- a/api-specs/api/types/common/DiscountedPrice.raml +++ b/api-specs/api/types/common/DiscountedPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#discountedprice displayName: DiscountedPrice type: object properties: diff --git a/api-specs/api/types/common/DiscountedPriceDraft.raml b/api-specs/api/types/common/DiscountedPriceDraft.raml index ca36b4f640..ac10248dd8 100644 --- a/api-specs/api/types/common/DiscountedPriceDraft.raml +++ b/api-specs/api/types/common/DiscountedPriceDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#discountedprice displayName: DiscountedPriceDraft type: object properties: diff --git a/api-specs/api/types/common/Expansion.raml b/api-specs/api/types/common/Expansion.raml index 43c5440fb6..b9418bb7b4 100644 --- a/api-specs/api/types/common/Expansion.raml +++ b/api-specs/api/types/common/Expansion.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/api/general-concepts#reference-expansion displayName: Expansion type: string description: | diff --git a/api-specs/api/types/common/HighPrecisionMoney.raml b/api-specs/api/types/common/HighPrecisionMoney.raml index ca7192b300..d5cc902e17 100644 --- a/api-specs/api/types/common/HighPrecisionMoney.raml +++ b/api-specs/api/types/common/HighPrecisionMoney.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#money displayName: HighPrecisionMoney type: TypedMoney discriminatorValue: highPrecision diff --git a/api-specs/api/types/common/HighPrecisionMoneyDraft.raml b/api-specs/api/types/common/HighPrecisionMoneyDraft.raml index 5f08de3e82..9cd0053403 100644 --- a/api-specs/api/types/common/HighPrecisionMoneyDraft.raml +++ b/api-specs/api/types/common/HighPrecisionMoneyDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#money displayName: HighPrecisionMoneyDraft type: TypedMoneyDraft discriminatorValue: highPrecision diff --git a/api-specs/api/types/common/Image.raml b/api-specs/api/types/common/Image.raml index 1bf0a34274..675e7325c9 100644 --- a/api-specs/api/types/common/Image.raml +++ b/api-specs/api/types/common/Image.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#image displayName: Image type: object properties: diff --git a/api-specs/api/types/common/ImageDimensions.raml b/api-specs/api/types/common/ImageDimensions.raml index f278556825..72a36041ae 100644 --- a/api-specs/api/types/common/ImageDimensions.raml +++ b/api-specs/api/types/common/ImageDimensions.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#imagedimensions displayName: ImageDimensions type: object properties: diff --git a/api-specs/api/types/common/KeyReference.raml b/api-specs/api/types/common/KeyReference.raml index 7bf419be5e..e6e7244ba4 100644 --- a/api-specs/api/types/common/KeyReference.raml +++ b/api-specs/api/types/common/KeyReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#keyreference displayName: KeyReference type: object discriminator: typeId diff --git a/api-specs/api/types/common/LastModifiedBy.raml b/api-specs/api/types/common/LastModifiedBy.raml index a38bcd9839..9b4ccad01c 100644 --- a/api-specs/api/types/common/LastModifiedBy.raml +++ b/api-specs/api/types/common/LastModifiedBy.raml @@ -2,7 +2,7 @@ (package): Common displayName: LastModifiedBy type: ClientLogging -description: Present on resources modified after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). +description: IDs and references that last modified the resource. This is present on resources created or updated after 1 February 2019 except for [events not tracked](/general-concepts#events-tracked). properties: clientId?: type: string @@ -21,6 +21,10 @@ properties: type: string description: | Indicates the [anonymous session](ctp:api:type:AnonymousSession) during which the resource was modified. + attributedTo?: + type: Attribution + description: | + Indicates if the resource was modified indirectly. associate?: type: CustomerReference description: | diff --git a/api-specs/api/types/common/LocalizedString.raml b/api-specs/api/types/common/LocalizedString.raml index 155f92f218..1a62b6c1d5 100644 --- a/api-specs/api/types/common/LocalizedString.raml +++ b/api-specs/api/types/common/LocalizedString.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#localizedstring displayName: LocalizedString type: object (asMap): diff --git a/api-specs/api/types/common/Money.raml b/api-specs/api/types/common/Money.raml index d05c5ae1c2..074a7fd6b7 100644 --- a/api-specs/api/types/common/Money.raml +++ b/api-specs/api/types/common/Money.raml @@ -1,11 +1,11 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#basemoney displayName: Money type: object description: | Draft type that stores amounts only in cent precision for the specified currency. example: !include ../../examples/Common/Money.json +(ignoreValidators): [PolymorphicSubtypesRule] properties: centAmount: type: number diff --git a/api-specs/api/types/common/MoneyType.raml b/api-specs/api/types/common/MoneyType.raml index 96fc8d4ea9..04806fc1ea 100644 --- a/api-specs/api/types/common/MoneyType.raml +++ b/api-specs/api/types/common/MoneyType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/api/types#moneytype displayName: MoneyType type: string description: Determines the type of money used. diff --git a/api-specs/api/types/common/Price.raml b/api-specs/api/types/common/Price.raml index 63567d74ed..c99f75f719 100644 --- a/api-specs/api/types/common/Price.raml +++ b/api-specs/api/types/common/Price.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#price displayName: Price description: |- The representation for prices embedded in [LineItems](ctp:api:type:LineItem) and in [ProductVariants](ctp:api:type:ProductVariant) when the [ProductPriceMode](ctp:api:type:ProductPriceModeEnum) is `Embedded`. @@ -52,6 +51,8 @@ properties: type: PriceTier[] description: | Present if different Prices for certain [LineItem](ctp:api:type:LineItem) quantities have been specified. + + If `discounted` is present, the tiered Price is ignored for a Product Variant. custom?: type: CustomFields description: | diff --git a/api-specs/api/types/common/PriceDraft.raml b/api-specs/api/types/common/PriceDraft.raml index 5d3908fb78..525cb15c5d 100644 --- a/api-specs/api/types/common/PriceDraft.raml +++ b/api-specs/api/types/common/PriceDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#pricedraft displayName: PriceDraft description: |- The draft representation for prices to be embedded into [ProductVariantDrafts](ctp:api:type:ProductVariantDraft) when the [ProductPriceMode](ctp:api:type:ProductPriceModeEnum) is `Embedded`. For the `Standalone` ProductPriceMode use [StandalonePriceDraft](ctp:api:type:StandalonePriceDraft). @@ -53,6 +52,8 @@ properties: type: PriceTierDraft[] description: | Set this field to specify different Prices for certain [LineItem](ctp:api:type:LineItem) quantities. + + If `discounted` is set, the tiered Price is ignored for a Product Variant. custom?: type: CustomFieldsDraft description: | diff --git a/api-specs/api/types/common/QueryPredicate.raml b/api-specs/api/types/common/QueryPredicate.raml index 5ed28e2dba..a8b8de280e 100644 --- a/api-specs/api/types/common/QueryPredicate.raml +++ b/api-specs/api/types/common/QueryPredicate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): displayName: QueryPredicate type: string description: | diff --git a/api-specs/api/types/common/QueryPrice.raml b/api-specs/api/types/common/QueryPrice.raml index 87ed5e3aeb..eac66a78f2 100644 --- a/api-specs/api/types/common/QueryPrice.raml +++ b/api-specs/api/types/common/QueryPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#price displayName: QueryPrice type: object properties: @@ -44,3 +43,5 @@ properties: type: PriceTierDraft[] description: | Price tier applied when the minimum quantity for the [LineItem](ctp:api:type:LineItem) of a ProductVariant with the related Price is reached in a Cart. + + If `discounted` is specified, the tiered Price is ignored for a Product Variant. diff --git a/api-specs/api/types/common/Reference.raml b/api-specs/api/types/common/Reference.raml index 40bf909864..2f680c592f 100644 --- a/api-specs/api/types/common/Reference.raml +++ b/api-specs/api/types/common/Reference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#reference displayName: Reference type: object discriminator: typeId diff --git a/api-specs/api/types/common/ReferenceTypeId.raml b/api-specs/api/types/common/ReferenceTypeId.raml index da5afb21e3..22c9199a48 100644 --- a/api-specs/api/types/common/ReferenceTypeId.raml +++ b/api-specs/api/types/common/ReferenceTypeId.raml @@ -30,6 +30,7 @@ enum: - product-discount - product-price - product-selection + - product-tailoring - product-type - quote - quote-request @@ -65,10 +66,12 @@ enum: References a [Channel](ctp:api:type:Channel). customer: | References a [Customer](ctp:api:type:Customer). - customer-email-token: References a [CustomerToken](ctp:api:type:CustomerToken) for [email verification](/../api/projects/customers#email-verification-of-customer). + customer-email-token: | + References a [CustomerToken](ctp:api:type:CustomerToken) for [email verification](/../api/projects/customers#email-verification-of-customer). customer-group: | References a [CustomerGroup](ctp:api:type:CustomerGroup). - customer-password-token: References a [CustomerToken](ctp:api:type:CustomerToken) for [password reset](/../api/projects/customers#password-reset-of-customer). + customer-password-token: | + References a [CustomerToken](ctp:api:type:CustomerToken) for [password reset](/../api/projects/customers#password-reset-of-customer). direct-discount: | References a [DirectDiscount](ctp:api:type:DirectDiscount). discount-code: | @@ -93,6 +96,8 @@ enum: References an [Embedded Price](/projects/products#embedded-price). product-selection: | References a [ProductSelection](ctp:api:type:ProductSelection). + product-tailoring: | + References a [ProductTailoring](ctp:api:type:ProductTailoring). product-type: | References a [ProductType](ctp:api:type:ProductType). quote: | diff --git a/api-specs/api/types/common/ResourceIdentifier.raml b/api-specs/api/types/common/ResourceIdentifier.raml index 37dac9efcc..c6a3751c48 100644 --- a/api-specs/api/types/common/ResourceIdentifier.raml +++ b/api-specs/api/types/common/ResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-types.html#resourceidentifier displayName: ResourceIdentifier type: object discriminator: typeId diff --git a/api-specs/api/types/common/ScopedPrice.raml b/api-specs/api/types/common/ScopedPrice.raml index 1be5931624..bad452fdf8 100644 --- a/api-specs/api/types/common/ScopedPrice.raml +++ b/api-specs/api/types/common/ScopedPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#scopedprice displayName: ScopedPrice type: object description: | diff --git a/api-specs/api/types/common/Sort.raml b/api-specs/api/types/common/Sort.raml index 27bc6ef7a2..c9fc47902e 100644 --- a/api-specs/api/types/common/Sort.raml +++ b/api-specs/api/types/common/Sort.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): displayName: Sort type: string description: | diff --git a/api-specs/api/types/common/TypedMoney.raml b/api-specs/api/types/common/TypedMoney.raml index 1917cc353d..5428d3c575 100644 --- a/api-specs/api/types/common/TypedMoney.raml +++ b/api-specs/api/types/common/TypedMoney.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/api/types#typedmoney displayName: TypedMoney type: Money discriminator: type diff --git a/api-specs/api/types/common/TypedMoneyDraft.raml b/api-specs/api/types/common/TypedMoneyDraft.raml index 9e0e1ad0f6..fcc99e1143 100644 --- a/api-specs/api/types/common/TypedMoneyDraft.raml +++ b/api-specs/api/types/common/TypedMoneyDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Common -(docs-uri): https://docs.commercetools.com/api/types#typedmoneydraft displayName: TypedMoneyDraft type: Money discriminator: type diff --git a/api-specs/api/types/custom-object/CustomObject.raml b/api-specs/api/types/custom-object/CustomObject.raml index 67ece25cc4..eb18da4c28 100644 --- a/api-specs/api/types/custom-object/CustomObject.raml +++ b/api-specs/api/types/custom-object/CustomObject.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomObject -(docs-uri): https://docs.commercetools.com/api/projects/custom-objects#customobject displayName: CustomObject type: BaseResource example: !include ../../examples/CustomObjects/CustomObject.json @@ -26,12 +25,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the CustomObject. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the CustomObject. container: type: string description: | diff --git a/api-specs/api/types/custom-object/CustomObjectDraft.raml b/api-specs/api/types/custom-object/CustomObjectDraft.raml index ae84fa76aa..09bcb35ffa 100644 --- a/api-specs/api/types/custom-object/CustomObjectDraft.raml +++ b/api-specs/api/types/custom-object/CustomObjectDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomObject -(docs-uri): https://docs.commercetools.com/api/projects/custom-objects#customobjectdraft displayName: CustomObjectDraft example: !include ../../examples/CustomObjects/CustomObjectDraft.json type: object diff --git a/api-specs/api/types/custom-object/CustomObjectPagedQueryResponse.raml b/api-specs/api/types/custom-object/CustomObjectPagedQueryResponse.raml index c1ec11ffc9..ffe85eb16a 100644 --- a/api-specs/api/types/custom-object/CustomObjectPagedQueryResponse.raml +++ b/api-specs/api/types/custom-object/CustomObjectPagedQueryResponse.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomObject -(docs-uri): https://docs.commercetools.com/api/projects/custom-objects#customobjectpagedqueryresponse displayName: CustomObjectPagedQueryResponse type: object description: | diff --git a/api-specs/api/types/custom-object/CustomObjectReference.raml b/api-specs/api/types/custom-object/CustomObjectReference.raml index 0f814f4032..cb4e31a674 100644 --- a/api-specs/api/types/custom-object/CustomObjectReference.raml +++ b/api-specs/api/types/custom-object/CustomObjectReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomObject -(docs-uri): https://docs.commercetools.com/api/projects/custom-objects#customobjectreference type: Reference displayName: CustomObjectReference discriminatorValue: key-value-document diff --git a/api-specs/api/types/customer-group/CustomerGroup.raml b/api-specs/api/types/customer-group/CustomerGroup.raml index 6dadd10c52..1c2241c862 100644 --- a/api-specs/api/types/customer-group/CustomerGroup.raml +++ b/api-specs/api/types/customer-group/CustomerGroup.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#customergroup displayName: CustomerGroup (updateType): CustomerGroupUpdate type: BaseResource @@ -28,12 +27,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources updated after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the CustomerGroup. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the CustomerGroup. key?: type: string description: | diff --git a/api-specs/api/types/customer-group/CustomerGroupDraft.raml b/api-specs/api/types/customer-group/CustomerGroupDraft.raml index c1fd072f69..15dab8f742 100644 --- a/api-specs/api/types/customer-group/CustomerGroupDraft.raml +++ b/api-specs/api/types/customer-group/CustomerGroupDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#customergroupdraft displayName: CustomerGroupDraft type: object properties: diff --git a/api-specs/api/types/customer-group/CustomerGroupReference.raml b/api-specs/api/types/customer-group/CustomerGroupReference.raml index 8c895185c6..69342e360e 100644 --- a/api-specs/api/types/customer-group/CustomerGroupReference.raml +++ b/api-specs/api/types/customer-group/CustomerGroupReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#customergroupreference type: Reference displayName: CustomerGroupReference discriminatorValue: customer-group diff --git a/api-specs/api/types/customer-group/CustomerGroupResourceIdentifier.raml b/api-specs/api/types/customer-group/CustomerGroupResourceIdentifier.raml index 082b98bc97..0e5372e51a 100644 --- a/api-specs/api/types/customer-group/CustomerGroupResourceIdentifier.raml +++ b/api-specs/api/types/customer-group/CustomerGroupResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#customergroupresourceidentifier type: ResourceIdentifier displayName: CustomerGroupResourceIdentifier discriminatorValue: customer-group diff --git a/api-specs/api/types/customer-group/updates/CustomerGroupChangeNameAction.raml b/api-specs/api/types/customer-group/updates/CustomerGroupChangeNameAction.raml index d5d31c699a..39da46c29f 100644 --- a/api-specs/api/types/customer-group/updates/CustomerGroupChangeNameAction.raml +++ b/api-specs/api/types/customer-group/updates/CustomerGroupChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#change-name type: CustomerGroupUpdateAction displayName: CustomerGroupChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomFieldAction.raml b/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomFieldAction.raml index e98f2a957d..27753b648c 100644 --- a/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomFieldAction.raml +++ b/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#set-customfield type: CustomerGroupUpdateAction displayName: CustomerGroupSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomTypeAction.raml b/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomTypeAction.raml index ce86b1f677..238e4ccc97 100644 --- a/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomTypeAction.raml +++ b/api-specs/api/types/customer-group/updates/CustomerGroupSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#set-custom-type type: CustomerGroupUpdateAction displayName: CustomerGroupSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/customer-group/updates/CustomerGroupSetKeyAction.raml b/api-specs/api/types/customer-group/updates/CustomerGroupSetKeyAction.raml index 13f9ee635f..77eeb7f4a8 100644 --- a/api-specs/api/types/customer-group/updates/CustomerGroupSetKeyAction.raml +++ b/api-specs/api/types/customer-group/updates/CustomerGroupSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): CustomerGroup -(docs-uri): https://docs.commercetools.com/api/projects/customerGroups#set-key type: CustomerGroupUpdateAction displayName: CustomerGroupSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/customer/AnonymousCartSignInMode.raml b/api-specs/api/types/customer/AnonymousCartSignInMode.raml index d99dc8f783..53dc2d06cb 100644 --- a/api-specs/api/types/customer/AnonymousCartSignInMode.raml +++ b/api-specs/api/types/customer/AnonymousCartSignInMode.raml @@ -6,5 +6,5 @@ enum: - MergeWithExistingCustomerCart - UseAsNewActiveCustomerCart (enumDescriptions): - MergeWithExistingCustomerCart: If set, [LineItems](ctp:api:type:LineItem) of an anonymous Cart are merged with the active Customer Cart that has been modified most recently. The [CartState](ctp:api:type:CartState) of the anonymous Cart changes to `Merged` while the [CartState](ctp:api:type:CartState) of the Customer's Cart remains `Active`. If a [LineItem](ctp:api:type:LineItem) or [CustomLineItem](ctp:api:type:CustomLineItem) in the anonymous Cart matches an existing Line Item or Custom Line Item in the Customer's Cart, the maximum quantity of both line items is used as the new quantity. - UseAsNewActiveCustomerCart: If set, an anonymous Cart is used as the new active Customer Cart, and no [LineItems](ctp:api:type:LineItem) are merged. + MergeWithExistingCustomerCart: If set, the content of an anonymous [Cart is merged during sign-in](/../api/customers-overview#cart-merge-during-sign-in) with the Customer's most recently modified active Cart. + UseAsNewActiveCustomerCart: If set, an anonymous Cart is used as the new active Customer Cart, and no [LineItems](ctp:api:type:LineItem) or [CustomLineItems](ctp:api:type:CustomLineItem) are merged. diff --git a/api-specs/api/types/customer/Customer.raml b/api-specs/api/types/customer/Customer.raml index 2094e2af92..5d58a511ad 100644 --- a/api-specs/api/types/customer/Customer.raml +++ b/api-specs/api/types/customer/Customer.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customer displayName: Customer (updateType): CustomerUpdate type: BaseResource @@ -33,7 +32,7 @@ properties: externalId?: type: string description: | - Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP). createdAt: type: datetime description: | @@ -46,12 +45,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Customer. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Customer. email: type: string description: | @@ -129,12 +128,12 @@ properties: type: string description: | Salutation of the Customer, for example, 'Mr.' or 'Mrs.'. - stores?: + stores: type: StoreKeyReference[] description: | [Stores](ctp:api:type:Store) to which the Customer is assigned to. - - If no Stores are specified, the Customer is a global customer, and can log in using the [Password Flow for global Customers](/../api/authorization#password-flow-for-global-customers). + - If `stores` is empty, the Customer is a global customer, and can log in using the [Password Flow for global Customers](/../api/authorization#password-flow-for-global-customers). - If any Stores are specified, the Customer can only log in using the [Password Flow for Customers in a Store](/../api/authorization#password-flow-for-customers-in-a-store) for those specific Stores. authenticationMode: type: AuthenticationMode diff --git a/api-specs/api/types/customer/CustomerDraft.raml b/api-specs/api/types/customer/CustomerDraft.raml index d869f94422..66c71e0c74 100644 --- a/api-specs/api/types/customer/CustomerDraft.raml +++ b/api-specs/api/types/customer/CustomerDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customerdraft displayName: CustomerDraft type: object properties: @@ -22,7 +21,7 @@ properties: externalId?: type: string description: | - Optional identifier for use in external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + Optional identifier for use in external systems like customer relationship management (CRM) or enterprise resource planning (ERP). email: type: string description: | diff --git a/api-specs/api/types/customer/CustomerEmailTokenReference.raml b/api-specs/api/types/customer/CustomerEmailTokenReference.raml index 22a2bc6ee5..a470017748 100644 --- a/api-specs/api/types/customer/CustomerEmailTokenReference.raml +++ b/api-specs/api/types/customer/CustomerEmailTokenReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customeremailtokenreference type: Reference displayName: CustomerEmailTokenReference discriminatorValue: customer-email-token diff --git a/api-specs/api/types/customer/CustomerPasswordTokenReference.raml b/api-specs/api/types/customer/CustomerPasswordTokenReference.raml index 394d9be633..8f915d0b50 100644 --- a/api-specs/api/types/customer/CustomerPasswordTokenReference.raml +++ b/api-specs/api/types/customer/CustomerPasswordTokenReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customerpasswordtokenreference type: Reference displayName: CustomerPasswordTokenReference discriminatorValue: customer-password-token diff --git a/api-specs/api/types/customer/CustomerReference.raml b/api-specs/api/types/customer/CustomerReference.raml index ca6c66a086..ed6eb64f3c 100644 --- a/api-specs/api/types/customer/CustomerReference.raml +++ b/api-specs/api/types/customer/CustomerReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customerreference type: Reference displayName: CustomerReference discriminatorValue: customer diff --git a/api-specs/api/types/customer/CustomerResourceIdentifier.raml b/api-specs/api/types/customer/CustomerResourceIdentifier.raml index a7b90bd906..b6c32750c5 100644 --- a/api-specs/api/types/customer/CustomerResourceIdentifier.raml +++ b/api-specs/api/types/customer/CustomerResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customerresourceidentifier type: ResourceIdentifier displayName: CustomerResourceIdentifier discriminatorValue: customer diff --git a/api-specs/api/types/customer/CustomerSignInResult.raml b/api-specs/api/types/customer/CustomerSignInResult.raml index 2e2ef9f1a6..aacf8979dc 100644 --- a/api-specs/api/types/customer/CustomerSignInResult.raml +++ b/api-specs/api/types/customer/CustomerSignInResult.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customersigninresult displayName: CustomerSignInResult type: object properties: diff --git a/api-specs/api/types/customer/CustomerToken.raml b/api-specs/api/types/customer/CustomerToken.raml index f399806aed..88036a239f 100644 --- a/api-specs/api/types/customer/CustomerToken.raml +++ b/api-specs/api/types/customer/CustomerToken.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#customertoken displayName: CustomerToken type: object example: !include ../../examples/Customer/CustomerToken.json diff --git a/api-specs/api/types/customer/updates/CustomerAddAddressAction.raml b/api-specs/api/types/customer/updates/CustomerAddAddressAction.raml index 20e3a1cd4d..ff7efa109a 100644 --- a/api-specs/api/types/customer/updates/CustomerAddAddressAction.raml +++ b/api-specs/api/types/customer/updates/CustomerAddAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#add-address type: CustomerUpdateAction displayName: CustomerAddAddressAction discriminatorValue: addAddress diff --git a/api-specs/api/types/customer/updates/CustomerAddBillingAddressIdAction.raml b/api-specs/api/types/customer/updates/CustomerAddBillingAddressIdAction.raml index 8d55edfa88..8b816a4f58 100644 --- a/api-specs/api/types/customer/updates/CustomerAddBillingAddressIdAction.raml +++ b/api-specs/api/types/customer/updates/CustomerAddBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#add-billing-address-id type: CustomerUpdateAction displayName: CustomerAddBillingAddressIdAction discriminatorValue: addBillingAddressId diff --git a/api-specs/api/types/customer/updates/CustomerAddShippingAddressIdAction.raml b/api-specs/api/types/customer/updates/CustomerAddShippingAddressIdAction.raml index f7cd7416b8..bedf571174 100644 --- a/api-specs/api/types/customer/updates/CustomerAddShippingAddressIdAction.raml +++ b/api-specs/api/types/customer/updates/CustomerAddShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#add-shipping-address-id type: CustomerUpdateAction displayName: CustomerAddShippingAddressIdAction discriminatorValue: addShippingAddressId diff --git a/api-specs/api/types/customer/updates/CustomerAddStoreAction.raml b/api-specs/api/types/customer/updates/CustomerAddStoreAction.raml index f0e65d8f52..ac17eac623 100644 --- a/api-specs/api/types/customer/updates/CustomerAddStoreAction.raml +++ b/api-specs/api/types/customer/updates/CustomerAddStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#add-store-beta type: CustomerUpdateAction displayName: CustomerAddStoreAction discriminatorValue: addStore diff --git a/api-specs/api/types/customer/updates/CustomerChangeAddressAction.raml b/api-specs/api/types/customer/updates/CustomerChangeAddressAction.raml index 31d7e381fd..e51ce5abf4 100644 --- a/api-specs/api/types/customer/updates/CustomerChangeAddressAction.raml +++ b/api-specs/api/types/customer/updates/CustomerChangeAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#change-address type: CustomerUpdateAction displayName: CustomerChangeAddressAction discriminatorValue: changeAddress diff --git a/api-specs/api/types/customer/updates/CustomerChangeEmailAction.raml b/api-specs/api/types/customer/updates/CustomerChangeEmailAction.raml index aadfe80762..26a706f334 100644 --- a/api-specs/api/types/customer/updates/CustomerChangeEmailAction.raml +++ b/api-specs/api/types/customer/updates/CustomerChangeEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#change-email type: CustomerUpdateAction displayName: CustomerChangeEmailAction discriminatorValue: changeEmail diff --git a/api-specs/api/types/customer/updates/CustomerRemoveAddressAction.raml b/api-specs/api/types/customer/updates/CustomerRemoveAddressAction.raml index 1a5779a9a3..2d10c0937c 100644 --- a/api-specs/api/types/customer/updates/CustomerRemoveAddressAction.raml +++ b/api-specs/api/types/customer/updates/CustomerRemoveAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#remove-address type: CustomerUpdateAction displayName: CustomerRemoveAddressAction discriminatorValue: removeAddress diff --git a/api-specs/api/types/customer/updates/CustomerRemoveBillingAddressIdAction.raml b/api-specs/api/types/customer/updates/CustomerRemoveBillingAddressIdAction.raml index 1b21be61c2..431dfe580c 100644 --- a/api-specs/api/types/customer/updates/CustomerRemoveBillingAddressIdAction.raml +++ b/api-specs/api/types/customer/updates/CustomerRemoveBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#remove-billing-address-id type: CustomerUpdateAction displayName: CustomerRemoveBillingAddressIdAction discriminatorValue: removeBillingAddressId diff --git a/api-specs/api/types/customer/updates/CustomerRemoveShippingAddressIdAction.raml b/api-specs/api/types/customer/updates/CustomerRemoveShippingAddressIdAction.raml index 207f04bd10..46faac68ca 100644 --- a/api-specs/api/types/customer/updates/CustomerRemoveShippingAddressIdAction.raml +++ b/api-specs/api/types/customer/updates/CustomerRemoveShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#remove-shipping-address-id type: CustomerUpdateAction displayName: CustomerRemoveShippingAddressIdAction discriminatorValue: removeShippingAddressId diff --git a/api-specs/api/types/customer/updates/CustomerRemoveStoreAction.raml b/api-specs/api/types/customer/updates/CustomerRemoveStoreAction.raml index 6b880b8eab..8e7c1c44dc 100644 --- a/api-specs/api/types/customer/updates/CustomerRemoveStoreAction.raml +++ b/api-specs/api/types/customer/updates/CustomerRemoveStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#remove-store-beta type: CustomerUpdateAction displayName: CustomerRemoveStoreAction discriminatorValue: removeStore diff --git a/api-specs/api/types/customer/updates/CustomerSetAddressCustomFieldAction.raml b/api-specs/api/types/customer/updates/CustomerSetAddressCustomFieldAction.raml index e5aea77d36..59664619f5 100644 --- a/api-specs/api/types/customer/updates/CustomerSetAddressCustomFieldAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-customfield-in-address type: CustomerUpdateAction displayName: CustomerSetAddressCustomFieldAction discriminatorValue: setAddressCustomField diff --git a/api-specs/api/types/customer/updates/CustomerSetAddressCustomTypeAction.raml b/api-specs/api/types/customer/updates/CustomerSetAddressCustomTypeAction.raml index 918b228a63..91374b5f8e 100644 --- a/api-specs/api/types/customer/updates/CustomerSetAddressCustomTypeAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-custom-type-in-address type: CustomerUpdateAction displayName: CustomerSetAddressCustomTypeAction discriminatorValue: setAddressCustomType diff --git a/api-specs/api/types/customer/updates/CustomerSetAuthenticationModeAction.raml b/api-specs/api/types/customer/updates/CustomerSetAuthenticationModeAction.raml index f4492f70a9..a5292aa6cc 100644 --- a/api-specs/api/types/customer/updates/CustomerSetAuthenticationModeAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetAuthenticationModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-authentication-mode type: CustomerUpdateAction displayName: CustomerSetAuthenticationModeAction discriminatorValue: setAuthenticationMode diff --git a/api-specs/api/types/customer/updates/CustomerSetCompanyNameAction.raml b/api-specs/api/types/customer/updates/CustomerSetCompanyNameAction.raml index 26ab32add1..35e0bdabd8 100644 --- a/api-specs/api/types/customer/updates/CustomerSetCompanyNameAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetCompanyNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-company-name type: CustomerUpdateAction displayName: CustomerSetCompanyNameAction discriminatorValue: setCompanyName diff --git a/api-specs/api/types/customer/updates/CustomerSetCustomFieldAction.raml b/api-specs/api/types/customer/updates/CustomerSetCustomFieldAction.raml index 7821480199..be08c09efa 100644 --- a/api-specs/api/types/customer/updates/CustomerSetCustomFieldAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-customfield type: CustomerUpdateAction displayName: CustomerSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/customer/updates/CustomerSetCustomTypeAction.raml b/api-specs/api/types/customer/updates/CustomerSetCustomTypeAction.raml index 23006114ac..d5c30cd0a8 100644 --- a/api-specs/api/types/customer/updates/CustomerSetCustomTypeAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-custom-type type: CustomerUpdateAction displayName: CustomerSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/customer/updates/CustomerSetCustomerGroupAction.raml b/api-specs/api/types/customer/updates/CustomerSetCustomerGroupAction.raml index ea0ed3a2f1..25a600b953 100644 --- a/api-specs/api/types/customer/updates/CustomerSetCustomerGroupAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetCustomerGroupAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-customergroup type: CustomerUpdateAction displayName: CustomerSetCustomerGroupAction discriminatorValue: setCustomerGroup diff --git a/api-specs/api/types/customer/updates/CustomerSetCustomerNumberAction.raml b/api-specs/api/types/customer/updates/CustomerSetCustomerNumberAction.raml index 2d41afdc34..2c6bf06010 100644 --- a/api-specs/api/types/customer/updates/CustomerSetCustomerNumberAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetCustomerNumberAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-customer-number type: CustomerUpdateAction displayName: CustomerSetCustomerNumberAction discriminatorValue: setCustomerNumber diff --git a/api-specs/api/types/customer/updates/CustomerSetDateOfBirthAction.raml b/api-specs/api/types/customer/updates/CustomerSetDateOfBirthAction.raml index 0bf88df3fd..4faab6b213 100644 --- a/api-specs/api/types/customer/updates/CustomerSetDateOfBirthAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetDateOfBirthAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-date-of-birth type: CustomerUpdateAction displayName: CustomerSetDateOfBirthAction discriminatorValue: setDateOfBirth diff --git a/api-specs/api/types/customer/updates/CustomerSetDefaultBillingAddressAction.raml b/api-specs/api/types/customer/updates/CustomerSetDefaultBillingAddressAction.raml index 49130a313b..a5f63b0238 100644 --- a/api-specs/api/types/customer/updates/CustomerSetDefaultBillingAddressAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetDefaultBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-default-billing-address type: CustomerUpdateAction displayName: CustomerSetDefaultBillingAddressAction discriminatorValue: setDefaultBillingAddress diff --git a/api-specs/api/types/customer/updates/CustomerSetDefaultShippingAddressAction.raml b/api-specs/api/types/customer/updates/CustomerSetDefaultShippingAddressAction.raml index 43609c726a..769a00573f 100644 --- a/api-specs/api/types/customer/updates/CustomerSetDefaultShippingAddressAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetDefaultShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-default-shipping-address type: CustomerUpdateAction displayName: CustomerSetDefaultShippingAddressAction discriminatorValue: setDefaultShippingAddress diff --git a/api-specs/api/types/customer/updates/CustomerSetExternalIdAction.raml b/api-specs/api/types/customer/updates/CustomerSetExternalIdAction.raml index 9345c88258..0eba8ce987 100644 --- a/api-specs/api/types/customer/updates/CustomerSetExternalIdAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetExternalIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-external-id type: CustomerUpdateAction displayName: CustomerSetExternalIdAction discriminatorValue: setExternalId diff --git a/api-specs/api/types/customer/updates/CustomerSetFirstNameAction.raml b/api-specs/api/types/customer/updates/CustomerSetFirstNameAction.raml index ffd3e2e218..86dd855a5e 100644 --- a/api-specs/api/types/customer/updates/CustomerSetFirstNameAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetFirstNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-first-name type: CustomerUpdateAction displayName: CustomerSetFirstNameAction discriminatorValue: setFirstName diff --git a/api-specs/api/types/customer/updates/CustomerSetKeyAction.raml b/api-specs/api/types/customer/updates/CustomerSetKeyAction.raml index e21f39e44e..90d1c85d4c 100644 --- a/api-specs/api/types/customer/updates/CustomerSetKeyAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-key type: CustomerUpdateAction displayName: CustomerSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/customer/updates/CustomerSetLastNameAction.raml b/api-specs/api/types/customer/updates/CustomerSetLastNameAction.raml index 35e6fa0ec8..4f21b03896 100644 --- a/api-specs/api/types/customer/updates/CustomerSetLastNameAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetLastNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-last-name type: CustomerUpdateAction displayName: CustomerSetLastNameAction discriminatorValue: setLastName diff --git a/api-specs/api/types/customer/updates/CustomerSetLocaleAction.raml b/api-specs/api/types/customer/updates/CustomerSetLocaleAction.raml index 6cde59a665..51faaaab05 100644 --- a/api-specs/api/types/customer/updates/CustomerSetLocaleAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-locale type: CustomerUpdateAction displayName: CustomerSetLocaleAction discriminatorValue: setLocale diff --git a/api-specs/api/types/customer/updates/CustomerSetMiddleNameAction.raml b/api-specs/api/types/customer/updates/CustomerSetMiddleNameAction.raml index 4a6e57408b..f41ec0de07 100644 --- a/api-specs/api/types/customer/updates/CustomerSetMiddleNameAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetMiddleNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-middle-name type: CustomerUpdateAction displayName: CustomerSetMiddleNameAction discriminatorValue: setMiddleName diff --git a/api-specs/api/types/customer/updates/CustomerSetSalutationAction.raml b/api-specs/api/types/customer/updates/CustomerSetSalutationAction.raml index 6394172d5f..cc4e9adff5 100644 --- a/api-specs/api/types/customer/updates/CustomerSetSalutationAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetSalutationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-salutation type: CustomerUpdateAction displayName: CustomerSetSalutationAction discriminatorValue: setSalutation diff --git a/api-specs/api/types/customer/updates/CustomerSetStoresAction.raml b/api-specs/api/types/customer/updates/CustomerSetStoresAction.raml index 30fb3f7c76..4cdd39b50a 100644 --- a/api-specs/api/types/customer/updates/CustomerSetStoresAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetStoresAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-stores-beta type: CustomerUpdateAction displayName: CustomerSetStoresAction discriminatorValue: setStores @@ -9,7 +8,7 @@ description: | Sets the Stores the Customer account is associated with. If no Stores are specified, the Customer becomes a [global Customer](/../api/customers-overview#global-versus-store-specific-customers). properties: - stores?: + stores: type: StoreResourceIdentifier[] description: | ResourceIdentifier of the Stores to set. diff --git a/api-specs/api/types/customer/updates/CustomerSetTitleAction.raml b/api-specs/api/types/customer/updates/CustomerSetTitleAction.raml index 9365233dad..cc56f38497 100644 --- a/api-specs/api/types/customer/updates/CustomerSetTitleAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetTitleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-title type: CustomerUpdateAction displayName: CustomerSetTitleAction discriminatorValue: setTitle diff --git a/api-specs/api/types/customer/updates/CustomerSetVatIdAction.raml b/api-specs/api/types/customer/updates/CustomerSetVatIdAction.raml index 27057de94a..b0c712fb36 100644 --- a/api-specs/api/types/customer/updates/CustomerSetVatIdAction.raml +++ b/api-specs/api/types/customer/updates/CustomerSetVatIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Customer -(docs-uri): https://docs.commercetools.com/api/projects/customers#set-vat-id type: CustomerUpdateAction displayName: CustomerSetVatIdAction discriminatorValue: setVatId diff --git a/api-specs/api/types/discount-code/DiscountCode.raml b/api-specs/api/types/discount-code/DiscountCode.raml index 63d1dce15d..5c584e7475 100644 --- a/api-specs/api/types/discount-code/DiscountCode.raml +++ b/api-specs/api/types/discount-code/DiscountCode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/api/projects/discountCodes#discountcode type: BaseResource displayName: DiscountCode (updateType): DiscountCodeUpdate @@ -10,6 +9,13 @@ properties: type: string description: | Unique identifier of the DiscountCode. + key?: + type: string + description: |- + User-defined unique identifier of the DiscountCode. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 version: type: number format: int64 @@ -27,12 +33,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the DiscountCode. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the DiscountCode. name?: type: LocalizedString description: | diff --git a/api-specs/api/types/discount-code/DiscountCodeDraft.raml b/api-specs/api/types/discount-code/DiscountCodeDraft.raml index c46a0384b2..a807cd0041 100644 --- a/api-specs/api/types/discount-code/DiscountCodeDraft.raml +++ b/api-specs/api/types/discount-code/DiscountCodeDraft.raml @@ -1,9 +1,15 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/api/projects/discountCodes#discountcodedraft type: object displayName: DiscountCodeDraft properties: + key?: + type: string + description: |- + User-defined unique identifier for the DiscountCode. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 name?: type: LocalizedString description: | diff --git a/api-specs/api/types/discount-code/DiscountCodeReference.raml b/api-specs/api/types/discount-code/DiscountCodeReference.raml index 49ebbf5233..080bab9f05 100644 --- a/api-specs/api/types/discount-code/DiscountCodeReference.raml +++ b/api-specs/api/types/discount-code/DiscountCodeReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/api/projects/discountCodes#discountcodereference type: Reference displayName: DiscountCodeReference discriminatorValue: discount-code diff --git a/api-specs/api/types/discount-code/DiscountCodeResourceIdentifier.raml b/api-specs/api/types/discount-code/DiscountCodeResourceIdentifier.raml index a447f8cce7..c8d0855106 100644 --- a/api-specs/api/types/discount-code/DiscountCodeResourceIdentifier.raml +++ b/api-specs/api/types/discount-code/DiscountCodeResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/http-api-projects-discountCodes.html#discountcoderesourceidentifier type: ResourceIdentifier displayName: DiscountCodeResourceIdentifier discriminatorValue: discount-code diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeChangeCartDiscountsAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeChangeCartDiscountsAction.raml index 86b4c9e423..efc937be99 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeChangeCartDiscountsAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeChangeCartDiscountsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#change-cartdiscounts type: DiscountCodeUpdateAction displayName: DiscountCodeChangeCartDiscountsAction discriminatorValue: changeCartDiscounts diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeChangeGroupsAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeChangeGroupsAction.raml index 03a1dcd8e0..f92a061e9c 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeChangeGroupsAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeChangeGroupsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#change-groups type: DiscountCodeUpdateAction displayName: DiscountCodeChangeGroupsAction discriminatorValue: changeGroups diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeChangeIsActiveAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeChangeIsActiveAction.raml index 9888c2fd62..d0babc5434 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeChangeIsActiveAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeChangeIsActiveAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/api/projects/discountCodes#change-isactive type: DiscountCodeUpdateAction displayName: DiscountCodeChangeIsActiveAction discriminatorValue: changeIsActive diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetCartPredicateAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetCartPredicateAction.raml index f0ce4d8205..fcb3c6d572 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetCartPredicateAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetCartPredicateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-cart-predicate type: DiscountCodeUpdateAction displayName: DiscountCodeSetCartPredicateAction discriminatorValue: setCartPredicate diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomFieldAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomFieldAction.raml index c8946c8fde..e6653111e6 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomFieldAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-customfield type: DiscountCodeUpdateAction displayName: DiscountCodeSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomTypeAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomTypeAction.raml index f349972d00..5e315ba061 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomTypeAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-custom-type type: DiscountCodeUpdateAction displayName: DiscountCodeSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetDescriptionAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetDescriptionAction.raml index 77bb5fdb33..a43fe9938c 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetDescriptionAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-description type: DiscountCodeUpdateAction displayName: DiscountCodeSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetKeyAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetKeyAction.raml new file mode 100644 index 0000000000..9b08356e16 --- /dev/null +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetKeyAction.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): DiscountCode +type: DiscountCodeUpdateAction +displayName: DiscountCodeSetKeyAction +discriminatorValue: setKey +example: !include ../../../examples/DiscountCode/DiscountCodeSetKeyAction.json +description: | + This action generates a [DiscountCodeKeySet](ctp:api:type:DiscountCodeKeySetMessage) Message. +properties: + key?: + type: string + description: | + Unique value to set. + If empty, any existing value will be removed. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsAction.raml index 58d1f82d63..150b1b4d13 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-max-applications type: DiscountCodeUpdateAction displayName: DiscountCodeSetMaxApplicationsAction discriminatorValue: setMaxApplications diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsPerCustomerAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsPerCustomerAction.raml index 9eccc5ff4d..182bffa362 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsPerCustomerAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetMaxApplicationsPerCustomerAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-max-applications-per-customer type: DiscountCodeUpdateAction displayName: DiscountCodeSetMaxApplicationsPerCustomerAction discriminatorValue: setMaxApplicationsPerCustomer diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetNameAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetNameAction.raml index 81e3e67be6..ed470757f1 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetNameAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-name type: DiscountCodeUpdateAction displayName: DiscountCodeSetNameAction discriminatorValue: setName diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAction.raml index 940485c681..62a2780ac4 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-validfrom type: DiscountCodeUpdateAction displayName: DiscountCodeSetValidFromAction discriminatorValue: setValidFrom diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAndUntilAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAndUntilAction.raml index fdcb93914a..af5c5ac556 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAndUntilAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetValidFromAndUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-valid-from-and-until type: DiscountCodeUpdateAction displayName: DiscountCodeSetValidFromAndUntilAction discriminatorValue: setValidFromAndUntil diff --git a/api-specs/api/types/discount-code/updates/DiscountCodeSetValidUntilAction.raml b/api-specs/api/types/discount-code/updates/DiscountCodeSetValidUntilAction.raml index dc321a8eaa..b136a5580b 100644 --- a/api-specs/api/types/discount-code/updates/DiscountCodeSetValidUntilAction.raml +++ b/api-specs/api/types/discount-code/updates/DiscountCodeSetValidUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): DiscountCode -(docs-uri): https://docs.commercetools.com/projects/discountCodes#set-validuntil type: DiscountCodeUpdateAction displayName: DiscountCodeSetValidUntilAction discriminatorValue: setValidUntil diff --git a/api-specs/api/types/error/ErrorResponse.raml b/api-specs/api/types/error/ErrorResponse.raml index d939c68835..430cc1dc81 100644 --- a/api-specs/api/types/error/ErrorResponse.raml +++ b/api-specs/api/types/error/ErrorResponse.raml @@ -5,6 +5,7 @@ displayName: ErrorResponse description: | Base representation of an error response containing common fields to all errors. example: !include /../../examples/Error/ErrorResponse.json +(ignoreValidators): [PolymorphicSubtypesRule] properties: statusCode: type: integer diff --git a/api-specs/api/types/error/GeneralError.raml b/api-specs/api/types/error/GeneralError.raml index 4396960a5f..aea0ccfa65 100644 --- a/api-specs/api/types/error/GeneralError.raml +++ b/api-specs/api/types/error/GeneralError.raml @@ -4,7 +4,7 @@ type: ErrorObject displayName: GeneralError discriminatorValue: General description: | - Returned when a server-side problem occurs. + Returned when a server-side problem occurs before or after data persistence. In some cases, the requested action may successfully complete after the error is returned. Therefore, it is recommended to verify the status of the requested resource after receiving a 500 error. If you encounter this error, report it using the [Support Portal](https://support.commercetools.com). properties: diff --git a/api-specs/api/types/error/LockedFieldError.raml b/api-specs/api/types/error/LockedFieldError.raml new file mode 100644 index 0000000000..13e048f304 --- /dev/null +++ b/api-specs/api/types/error/LockedFieldError.raml @@ -0,0 +1,20 @@ +#%RAML 1.0 DataType +(package): Error +type: ErrorObject +displayName: LockedFieldError +discriminatorValue: LockedField +description: | + Returned when two [Customers](ctp:api:type:Customer) are simultaneously created or updated with the same email address. + + To confirm if the operation was successful, repeat the request. +properties: + field: + type: string + description: | + Field that is currently locked. + code: + type: string + message: + type: string + description: | + `"'$field' is locked by another request. Please try again later."` diff --git a/api-specs/api/types/error/PriceChangedError.raml b/api-specs/api/types/error/PriceChangedError.raml index 3b5f9a3fcb..001a16ab94 100644 --- a/api-specs/api/types/error/PriceChangedError.raml +++ b/api-specs/api/types/error/PriceChangedError.raml @@ -4,12 +4,15 @@ type: ErrorObject displayName: PriceChangedError discriminatorValue: PriceChanged description: | - Returned when the Price, Tax Rate, or Shipping Rate of some Line Items changed since they were last added to the Cart. + Returned when the Price or Tax Rate of some Line Items or Shipping Rate of some Shipping Methods changed since they were last added to the Cart. The error is returned as a failed response to: - [Create Order from Cart](ctp:api:endpoint:/{projectKey}/orders:POST) and [Create Order in Store from Cart](ctp:api:endpoint:/{projectKey}/in-store/orders:POST) requests on Orders. - [Create Order from Cart](ctp:api:endpoint:/{projectKey}/me/orders:POST) and [Create Order in Store from Cart](ctp:api:endpoint:/{projectKey}/in-store/me/orders:POST) requests on My Orders. + - [Create Order from Quote](ctp:api:endpoint:/{projectKey}/orders/quotes:POST) request on Orders. + - [Create Order from Quote](ctp:api:endpoint:/{projectKey}/me/orders/quotes:POST) request on My Orders. + properties: code: type: string diff --git a/api-specs/api/types/error/graphql/GraphQLGeneralError.raml b/api-specs/api/types/error/graphql/GraphQLGeneralError.raml index 0417aac095..d4b788638d 100644 --- a/api-specs/api/types/error/graphql/GraphQLGeneralError.raml +++ b/api-specs/api/types/error/graphql/GraphQLGeneralError.raml @@ -4,7 +4,7 @@ type: GraphQLErrorObject displayName: GraphQLGeneralError discriminatorValue: General description: | - Returned when a server-side problem occurs. + Returned when a server-side problem occurs before or after data persistence. In some cases, the requested action may successfully complete after the error is returned. Therefore, it is recommended to verify the status of the requested resource after receiving a 500 error. If you encounter this error, report it using the [Support Portal](https://support.commercetools.com). properties: diff --git a/api-specs/api/types/error/graphql/GraphQLLockedFieldError.raml b/api-specs/api/types/error/graphql/GraphQLLockedFieldError.raml new file mode 100644 index 0000000000..4591d40e81 --- /dev/null +++ b/api-specs/api/types/error/graphql/GraphQLLockedFieldError.raml @@ -0,0 +1,16 @@ +#%RAML 1.0 DataType +(package): Error +type: GraphQLErrorObject +displayName: GraphQLLockedFieldError +discriminatorValue: LockedField +description: | + Returned when two [Customers](ctp:api:type:Customer) are simultaneously created or updated with the same email address. + + To confirm if the operation was successful, repeat the request. +properties: + field: + type: string + description: | + Field that is currently locked. + code: + type: string diff --git a/api-specs/api/types/error/graphql/GraphQLPriceChangedError.raml b/api-specs/api/types/error/graphql/GraphQLPriceChangedError.raml index b3ab7a84ee..56729acdd9 100644 --- a/api-specs/api/types/error/graphql/GraphQLPriceChangedError.raml +++ b/api-specs/api/types/error/graphql/GraphQLPriceChangedError.raml @@ -4,12 +4,14 @@ type: GraphQLErrorObject displayName: GraphQLPriceChangedError discriminatorValue: PriceChanged description: | - Returned when the Price, Tax Rate, or Shipping Rate of some Line Items changed since they were last added to the Cart. + Returned when the Price or Tax Rate of some Line Items or Shipping Rate of some Shipping Methods changed since they were last added to the Cart. The error is returned as a failed response to: - [Create Order from Cart](ctp:api:endpoint:/{projectKey}/orders:POST) and [Create Order in Store from Cart](ctp:api:endpoint:/{projectKey}/in-store/orders:POST) requests on Orders. - [Create Order from Cart](ctp:api:endpoint:/{projectKey}/me/orders:POST) and [Create Order in Store from Cart](ctp:api:endpoint:/{projectKey}/in-store/me/orders:POST) requests on My Orders. + - [Create Order from Quote](ctp:api:endpoint:/{projectKey}/orders/quotes:POST) request on Orders. + - [Create Order from Quote](ctp:api:endpoint:/{projectKey}/me/orders/quotes:POST) request on My Orders. properties: code: type: string diff --git a/api-specs/api/types/extension/Extension.raml b/api-specs/api/types/extension/Extension.raml index 6457443143..eebceb33eb 100644 --- a/api-specs/api/types/extension/Extension.raml +++ b/api-specs/api/types/extension/Extension.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Extension -(docs-uri): https://docs.commercetools.com/api/projects/api-extensions#extension type: BaseResource displayName: Extension (updateType): ExtensionUpdate @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Extension. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Extension. key?: type: string description: | diff --git a/api-specs/api/types/extension/updates/ExtensionChangeDestinationAction.raml b/api-specs/api/types/extension/updates/ExtensionChangeDestinationAction.raml index 6a1b77fe73..bbc5e8b8e4 100644 --- a/api-specs/api/types/extension/updates/ExtensionChangeDestinationAction.raml +++ b/api-specs/api/types/extension/updates/ExtensionChangeDestinationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Extension -(docs-uri): https://docs.commercetools.com/api/projects/api-extensions#change-destination type: ExtensionUpdateAction displayName: ExtensionChangeDestinationAction discriminatorValue: changeDestination diff --git a/api-specs/api/types/extension/updates/ExtensionChangeTriggersAction.raml b/api-specs/api/types/extension/updates/ExtensionChangeTriggersAction.raml index 03a38a0c8c..45f230f6d3 100644 --- a/api-specs/api/types/extension/updates/ExtensionChangeTriggersAction.raml +++ b/api-specs/api/types/extension/updates/ExtensionChangeTriggersAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Extension -(docs-uri): https://docs.commercetools.com/api/projects/api-extensions#change-triggers type: ExtensionUpdateAction displayName: ExtensionChangeTriggersAction discriminatorValue: changeTriggers diff --git a/api-specs/api/types/extension/updates/ExtensionSetKeyAction.raml b/api-specs/api/types/extension/updates/ExtensionSetKeyAction.raml index c90f43ece7..f355d7a9ef 100644 --- a/api-specs/api/types/extension/updates/ExtensionSetKeyAction.raml +++ b/api-specs/api/types/extension/updates/ExtensionSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Extension -(docs-uri): https://docs.commercetools.com/api/projects/api-extensions#set-key type: ExtensionUpdateAction displayName: ExtensionSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/extension/updates/ExtensionSetTimeoutInMsAction.raml b/api-specs/api/types/extension/updates/ExtensionSetTimeoutInMsAction.raml index 71a61fce9a..835bee69db 100644 --- a/api-specs/api/types/extension/updates/ExtensionSetTimeoutInMsAction.raml +++ b/api-specs/api/types/extension/updates/ExtensionSetTimeoutInMsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Extension -(docs-uri): https://docs.commercetools.com/api/projects/api-extensions#set-timeoutinms type: ExtensionUpdateAction displayName: ExtensionSetTimeoutInMsAction discriminatorValue: setTimeoutInMs diff --git a/api-specs/api/types/inventory/InventoryEntry.raml b/api-specs/api/types/inventory/InventoryEntry.raml index a23ad990fc..f4b39d98e1 100644 --- a/api-specs/api/types/inventory/InventoryEntry.raml +++ b/api-specs/api/types/inventory/InventoryEntry.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#inventoryentry displayName: InventoryEntry (updateType): InventoryEntryUpdate (actionType): InventoryEntryUpdateAction @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the InventoryEntry. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the InventoryEntry. key?: type: string description: | diff --git a/api-specs/api/types/inventory/InventoryEntryDraft.raml b/api-specs/api/types/inventory/InventoryEntryDraft.raml index 66d27fdfe0..52927526fe 100644 --- a/api-specs/api/types/inventory/InventoryEntryDraft.raml +++ b/api-specs/api/types/inventory/InventoryEntryDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#inventoryentrydraft displayName: InventoryEntryDraft type: object properties: diff --git a/api-specs/api/types/inventory/updates/InventoryEntryAddQuantityAction.raml b/api-specs/api/types/inventory/updates/InventoryEntryAddQuantityAction.raml index 85d3aadc33..9ea37d2a90 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntryAddQuantityAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntryAddQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#add-quantity type: InventoryEntryUpdateAction displayName: InventoryEntryAddQuantityAction discriminatorValue: addQuantity diff --git a/api-specs/api/types/inventory/updates/InventoryEntryChangeQuantityAction.raml b/api-specs/api/types/inventory/updates/InventoryEntryChangeQuantityAction.raml index e85aa6d85d..e2d5e59933 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntryChangeQuantityAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntryChangeQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#change-quantity type: InventoryEntryUpdateAction displayName: InventoryEntryChangeQuantityAction discriminatorValue: changeQuantity diff --git a/api-specs/api/types/inventory/updates/InventoryEntryRemoveQuantityAction.raml b/api-specs/api/types/inventory/updates/InventoryEntryRemoveQuantityAction.raml index aafd529a38..7ac9592228 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntryRemoveQuantityAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntryRemoveQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#remove-quantity type: InventoryEntryUpdateAction displayName: InventoryEntryRemoveQuantityAction discriminatorValue: removeQuantity diff --git a/api-specs/api/types/inventory/updates/InventoryEntrySetCustomFieldAction.raml b/api-specs/api/types/inventory/updates/InventoryEntrySetCustomFieldAction.raml index e1fb9b69eb..59edc8c23a 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntrySetCustomFieldAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntrySetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#set-customfield type: InventoryEntryUpdateAction displayName: InventoryEntrySetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/inventory/updates/InventoryEntrySetCustomTypeAction.raml b/api-specs/api/types/inventory/updates/InventoryEntrySetCustomTypeAction.raml index 4f3f5b25ee..7c83930e6b 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntrySetCustomTypeAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntrySetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#set-custom-type type: InventoryEntryUpdateAction displayName: InventoryEntrySetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/inventory/updates/InventoryEntrySetExpectedDeliveryAction.raml b/api-specs/api/types/inventory/updates/InventoryEntrySetExpectedDeliveryAction.raml index de0ff99029..2cd97333d1 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntrySetExpectedDeliveryAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntrySetExpectedDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#set-expecteddelivery type: InventoryEntryUpdateAction displayName: InventoryEntrySetExpectedDeliveryAction discriminatorValue: setExpectedDelivery diff --git a/api-specs/api/types/inventory/updates/InventoryEntrySetKeyAction.raml b/api-specs/api/types/inventory/updates/InventoryEntrySetKeyAction.raml index 052e25b03e..5a04a2bac0 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntrySetKeyAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntrySetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#set-key type: InventoryEntryUpdateAction displayName: InventoryEntrySetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/inventory/updates/InventoryEntrySetRestockableInDaysAction.raml b/api-specs/api/types/inventory/updates/InventoryEntrySetRestockableInDaysAction.raml index ab70efcfd3..2f5060aa1a 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntrySetRestockableInDaysAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntrySetRestockableInDaysAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#set-restockableindays type: InventoryEntryUpdateAction displayName: InventoryEntrySetRestockableInDaysAction discriminatorValue: setRestockableInDays diff --git a/api-specs/api/types/inventory/updates/InventoryEntrySetSupplyChannelAction.raml b/api-specs/api/types/inventory/updates/InventoryEntrySetSupplyChannelAction.raml index 9ef34969dc..04d81f8e4c 100644 --- a/api-specs/api/types/inventory/updates/InventoryEntrySetSupplyChannelAction.raml +++ b/api-specs/api/types/inventory/updates/InventoryEntrySetSupplyChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Inventory -(docs-uri): https://docs.commercetools.com/api/projects/inventory#set-supplychannel type: InventoryEntryUpdateAction displayName: InventoryEntrySetSupplyChannelAction discriminatorValue: setSupplyChannel diff --git a/api-specs/api/types/me/MyBusinessUnitAssociateDraft.raml b/api-specs/api/types/me/MyBusinessUnitAssociateDraft.raml index 4caad7d2c8..de21f9532c 100644 --- a/api-specs/api/types/me/MyBusinessUnitAssociateDraft.raml +++ b/api-specs/api/types/me/MyBusinessUnitAssociateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#mybusinessunitassociatedraft displayName: MyBusinessUnitAssociateDraft properties: version: diff --git a/api-specs/api/types/me/MyBusinessUnitDraft.raml b/api-specs/api/types/me/MyBusinessUnitDraft.raml index 7bec018536..5f875f1ec0 100644 --- a/api-specs/api/types/me/MyBusinessUnitDraft.raml +++ b/api-specs/api/types/me/MyBusinessUnitDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#mybusinessunitdraft displayName: MyBusinessUnitDraft discriminator: unitType properties: @@ -24,7 +23,7 @@ properties: description: | Email address of the Business Unit. custom?: - type: CustomFields + type: CustomFieldsDraft description: | Custom Fields for the Business Unit. addresses?: diff --git a/api-specs/api/types/me/MyBusinessUnitUpdateAction.raml b/api-specs/api/types/me/MyBusinessUnitUpdateAction.raml index 746a4eed24..eecdcc9d4f 100644 --- a/api-specs/api/types/me/MyBusinessUnitUpdateAction.raml +++ b/api-specs/api/types/me/MyBusinessUnitUpdateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#update-actions type: object displayName: MyBusinessUnitUpdateAction discriminator: action diff --git a/api-specs/api/types/me/MyCartDraft.raml b/api-specs/api/types/me/MyCartDraft.raml index 645c4204e4..b659dbbf6b 100644 --- a/api-specs/api/types/me/MyCartDraft.raml +++ b/api-specs/api/types/me/MyCartDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#mycartdraft displayName: MyCartDraft type: object description: | @@ -58,6 +57,12 @@ properties: The keys are used by [LineItems](ctp:api:type:LineItem) to reference these addresses under their `shippingDetails`. Eligible Shipping Methods or applicable Tax Rates are determined by the [Cart](ctp:api:type:Cart) `shippingAddress`, and not `itemShippingAddresses`. + shippingMode?: + type: ShippingMode + description: |- + - If set to `Single`, only a single Shipping Method can be added to the Cart. + - If set to `Multiple`, multiple Shipping Methods can be added to the Cart. + default: Single discountCodes?: type: string[] description: | diff --git a/api-specs/api/types/me/MyCartUpdateAction.raml b/api-specs/api/types/me/MyCartUpdateAction.raml index c852b72464..c41c30b276 100644 --- a/api-specs/api/types/me/MyCartUpdateAction.raml +++ b/api-specs/api/types/me/MyCartUpdateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/http-api-projects-me-carts#update-actions type: object displayName: MyCartUpdateAction discriminator: action diff --git a/api-specs/api/types/me/MyCompanyDraft.raml b/api-specs/api/types/me/MyCompanyDraft.raml index 48e6cf61b8..1681252c5d 100644 --- a/api-specs/api/types/me/MyCompanyDraft.raml +++ b/api-specs/api/types/me/MyCompanyDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitdraft displayName: MyCompanyDraft type: MyBusinessUnitDraft discriminatorValue: Company diff --git a/api-specs/api/types/me/MyCustomerDraft.raml b/api-specs/api/types/me/MyCustomerDraft.raml index 7a6ff6bcc9..398a4b9da3 100644 --- a/api-specs/api/types/me/MyCustomerDraft.raml +++ b/api-specs/api/types/me/MyCustomerDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#mycustomerdraft displayName: MyCustomerDraft type: object properties: diff --git a/api-specs/api/types/me/MyCustomerUpdateAction.raml b/api-specs/api/types/me/MyCustomerUpdateAction.raml index 3d6378af89..67a2f5b649 100644 --- a/api-specs/api/types/me/MyCustomerUpdateAction.raml +++ b/api-specs/api/types/me/MyCustomerUpdateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/http-api-projects-me-profile#update-actions type: object displayName: MyCustomerUpdateAction discriminator: action diff --git a/api-specs/api/types/me/MyDivisionDraft.raml b/api-specs/api/types/me/MyDivisionDraft.raml index 50a7a2e331..75f58b2968 100644 --- a/api-specs/api/types/me/MyDivisionDraft.raml +++ b/api-specs/api/types/me/MyDivisionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/business-units#businessunitdraft displayName: MyDivisionDraft type: MyBusinessUnitDraft discriminatorValue: Division diff --git a/api-specs/api/types/me/MyLineItemDraft.raml b/api-specs/api/types/me/MyLineItemDraft.raml index bd34ade5a3..c4297a003e 100644 --- a/api-specs/api/types/me/MyLineItemDraft.raml +++ b/api-specs/api/types/me/MyLineItemDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#mylineitemdraft displayName: MyLineItemDraft type: object description: | diff --git a/api-specs/api/types/me/MyPayment.raml b/api-specs/api/types/me/MyPayment.raml index d3ba90c69c..cbb8878d1a 100644 --- a/api-specs/api/types/me/MyPayment.raml +++ b/api-specs/api/types/me/MyPayment.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#mypayment type: object displayName: MyPayment (updateType): MyPaymentUpdate diff --git a/api-specs/api/types/me/MyPaymentDraft.raml b/api-specs/api/types/me/MyPaymentDraft.raml index 695a99346d..db00890b08 100644 --- a/api-specs/api/types/me/MyPaymentDraft.raml +++ b/api-specs/api/types/me/MyPaymentDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#mypaymentdraft type: object displayName: MyPaymentDraft properties: diff --git a/api-specs/api/types/me/MyPaymentUpdateAction.raml b/api-specs/api/types/me/MyPaymentUpdateAction.raml index 3dbe2e3421..1abb57ef57 100644 --- a/api-specs/api/types/me/MyPaymentUpdateAction.raml +++ b/api-specs/api/types/me/MyPaymentUpdateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#update-actions type: object displayName: MyPaymentUpdateAction discriminator: action diff --git a/api-specs/api/types/me/MyQuoteRequestDraft.raml b/api-specs/api/types/me/MyQuoteRequestDraft.raml index 3fbf93a606..2fefa1db0f 100644 --- a/api-specs/api/types/me/MyQuoteRequestDraft.raml +++ b/api-specs/api/types/me/MyQuoteRequestDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/http-api-projects-me-quote-requests#myquoterequestdraft type: object displayName: MyQuoteRequestDraft properties: diff --git a/api-specs/api/types/me/MyQuoteRequestUpdateAction.raml b/api-specs/api/types/me/MyQuoteRequestUpdateAction.raml index 6991c580be..5c21ef67c8 100644 --- a/api-specs/api/types/me/MyQuoteRequestUpdateAction.raml +++ b/api-specs/api/types/me/MyQuoteRequestUpdateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/http-api-projects-me-quote-request#update-actions type: object displayName: MyQuoteRequestUpdateAction discriminator: action diff --git a/api-specs/api/types/me/MyQuoteState.raml b/api-specs/api/types/me/MyQuoteState.raml index 2549fd2d28..81323da42c 100644 --- a/api-specs/api/types/me/MyQuoteState.raml +++ b/api-specs/api/types/me/MyQuoteState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/http-api-projects-me-quotes.html#myquotestate displayName: MyQuoteState type: string description: | diff --git a/api-specs/api/types/me/MyShoppingListDraft.raml b/api-specs/api/types/me/MyShoppingListDraft.raml index ec13ae1568..515c13b8a5 100644 --- a/api-specs/api/types/me/MyShoppingListDraft.raml +++ b/api-specs/api/types/me/MyShoppingListDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#myshoppinglistdraft displayName: MyShoppingListDraft type: object example: !include ../../examples/my-shopping-list-create.example.json diff --git a/api-specs/api/types/me/MyShoppingListUpdateAction.raml b/api-specs/api/types/me/MyShoppingListUpdateAction.raml index 596c1276c9..c2033ed085 100644 --- a/api-specs/api/types/me/MyShoppingListUpdateAction.raml +++ b/api-specs/api/types/me/MyShoppingListUpdateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#update-actions type: object displayName: MyShoppingListUpdateAction discriminator: action diff --git a/api-specs/api/types/me/ReplicaMyCartDraft.raml b/api-specs/api/types/me/ReplicaMyCartDraft.raml index 003deeb7c2..027103e109 100644 --- a/api-specs/api/types/me/ReplicaMyCartDraft.raml +++ b/api-specs/api/types/me/ReplicaMyCartDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#replicamycartdraft displayName: ReplicaMyCartDraft type: object properties: diff --git a/api-specs/api/types/me/updates/MyBusinessUnitAddAddressAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitAddAddressAction.raml index 602776433c..46cea49ced 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitAddAddressAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitAddAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#add-address type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitAddAddressAction example: !include ../../../examples/BusinessUnit/BusinessUnitAddAddressAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitAddBillingAddressIdAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitAddBillingAddressIdAction.raml index 3e29da3fe1..d4847244a2 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitAddBillingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitAddBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#add-billing-address-id type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitAddBillingAddressIdAction example: !include ../../../examples/BusinessUnit/BusinessUnitAddBillingAddressIdAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitAddShippingAddressIdAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitAddShippingAddressIdAction.raml index 589bb3bf6f..6164d06b17 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitAddShippingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitAddShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#add-shipping-address-id type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitAddShippingAddressIdAction example: !include ../../../examples/BusinessUnit/BusinessUnitAddShippingAddressIdAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitChangeAddressAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitChangeAddressAction.raml index 1559c909ba..cb2d969157 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitChangeAddressAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitChangeAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#change-address type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitChangeAddressAction example: !include ../../../examples/BusinessUnit/BusinessUnitChangeAddressAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitChangeAssociateAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitChangeAssociateAction.raml index 411b57ea8f..7d10eb3633 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitChangeAssociateAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitChangeAssociateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#change-associate type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitChangeAssociateAction example: !include ../../../examples/BusinessUnit/BusinessUnitChangeAssociateAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitChangeNameAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitChangeNameAction.raml index 2dad6ee096..3d657658f6 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitChangeNameAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-name type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitChangeNameAction example: !include ../../../examples/BusinessUnit/BusinessUnitChangeNameAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitChangeParentUnitAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitChangeParentUnitAction.raml index 12995e3279..451e8988ef 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitChangeParentUnitAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitChangeParentUnitAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#change-parent-unit type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitChangeParentUnitAction example: !include ../../../examples/BusinessUnit/BusinessUnitChangeParentUnitAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitRemoveAddressAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitRemoveAddressAction.raml index a0bfa0a90b..4a55434dee 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitRemoveAddressAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitRemoveAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#remove-address type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitRemoveAddressAction example: !include ../../../examples/BusinessUnit/BusinessUnitRemoveAddressAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitRemoveAssociateAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitRemoveAssociateAction.raml index e957d98016..79495f746c 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitRemoveAssociateAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitRemoveAssociateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#remove-address type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitRemoveAssociateAction example: !include ../../../examples/BusinessUnit/BusinessUnitRemoveAssociateAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitRemoveBillingAddressIdAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitRemoveBillingAddressIdAction.raml index f0f3e8cb28..7a2306a410 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitRemoveBillingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitRemoveBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#remove-billing-address-id type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitRemoveBillingAddressIdAction example: !include ../../../examples/BusinessUnit/BusinessUnitRemoveBillingAddressIdAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitRemoveShippingAddressIdAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitRemoveShippingAddressIdAction.raml index dbd4db1ae3..8b8d6c81ab 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitRemoveShippingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitRemoveShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#remove-shipping-address-id type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitRemoveShippingAddressIdAction example: !include ../../../examples/BusinessUnit/BusinessUnitRemoveShippingAddressIdAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomFieldAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomFieldAction.raml index 44daedcb20..51de1c0f77 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-customfield-in-address type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetAddressCustomFieldAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetAddressCustomFieldAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomTypeAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomTypeAction.raml index 0a483ee9a8..b50abafe05 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-custom-type-in-address type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetAddressCustomTypeAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetAddressCustomTypeAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetContactEmailAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetContactEmailAction.raml index 5d4029bbb7..32a81c1008 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetContactEmailAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetContactEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-contact-email type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetContactEmailAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetContactEmailAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetCustomFieldAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetCustomFieldAction.raml index 639c92e154..95da497dc6 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-customfield type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetCustomFieldAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetCustomFieldAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetCustomTypeAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetCustomTypeAction.raml index 69fce333b6..573b830ce3 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-custom-type type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetCustomTypeAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetCustomTypeAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultBillingAddressAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultBillingAddressAction.raml index 20099ce305..9e91683ada 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultBillingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-default-billing-address-id type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetDefaultBillingAddressAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetDefaultBillingAddressAction.json diff --git a/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultShippingAddressAction.raml b/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultShippingAddressAction.raml index 4760b5e6ce..521ad00618 100644 --- a/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultShippingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyBusinessUnitSetDefaultShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-business-units#set-default-shipping-address-id type: MyBusinessUnitUpdateAction displayName: MyBusinessUnitSetDefaultShippingAddressAction example: !include ../../../examples/BusinessUnit/BusinessUnitSetDefaultShippingAddressAction.json diff --git a/api-specs/api/types/me/updates/MyCartAddDiscountCodeAction.raml b/api-specs/api/types/me/updates/MyCartAddDiscountCodeAction.raml index 19cef980c6..7fc9c0f2c6 100644 --- a/api-specs/api/types/me/updates/MyCartAddDiscountCodeAction.raml +++ b/api-specs/api/types/me/updates/MyCartAddDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#add-discountcode type: MyCartUpdateAction displayName: MyCartAddDiscountCodeAction discriminatorValue: addDiscountCode diff --git a/api-specs/api/types/me/updates/MyCartAddItemShippingAddressAction.raml b/api-specs/api/types/me/updates/MyCartAddItemShippingAddressAction.raml index 7bc35fd2ed..ebc65428a8 100644 --- a/api-specs/api/types/me/updates/MyCartAddItemShippingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCartAddItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#add-itemshippingaddress type: MyCartUpdateAction displayName: MyCartAddItemShippingAddressAction discriminatorValue: addItemShippingAddress diff --git a/api-specs/api/types/me/updates/MyCartAddLineItemAction.raml b/api-specs/api/types/me/updates/MyCartAddLineItemAction.raml index 22729125b9..9f0a4fbc87 100644 --- a/api-specs/api/types/me/updates/MyCartAddLineItemAction.raml +++ b/api-specs/api/types/me/updates/MyCartAddLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#add-lineitem type: MyCartUpdateAction displayName: MyCartAddLineItemAction discriminatorValue: addLineItem diff --git a/api-specs/api/types/me/updates/MyCartAddPaymentAction.raml b/api-specs/api/types/me/updates/MyCartAddPaymentAction.raml index 338cd4838a..c9c52a1c1d 100644 --- a/api-specs/api/types/me/updates/MyCartAddPaymentAction.raml +++ b/api-specs/api/types/me/updates/MyCartAddPaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#add-payment type: MyCartUpdateAction displayName: MyCartAddPaymentAction example: !include ../../../examples/Cart/CartAddPaymentAction.json diff --git a/api-specs/api/types/me/updates/MyCartApplyDeltaToLineItemShippingDetailsTargetsAction.raml b/api-specs/api/types/me/updates/MyCartApplyDeltaToLineItemShippingDetailsTargetsAction.raml index 0f4afeb1b2..3a0fcfc537 100644 --- a/api-specs/api/types/me/updates/MyCartApplyDeltaToLineItemShippingDetailsTargetsAction.raml +++ b/api-specs/api/types/me/updates/MyCartApplyDeltaToLineItemShippingDetailsTargetsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#apply-deltatolineitemshippingdetailstargets type: MyCartUpdateAction displayName: MyCartApplyDeltaToLineItemShippingDetailsTargetsAction discriminatorValue: applyDeltaToLineItemShippingDetailsTargets diff --git a/api-specs/api/types/me/updates/MyCartChangeLineItemQuantityAction.raml b/api-specs/api/types/me/updates/MyCartChangeLineItemQuantityAction.raml index c767e53f80..cf459d2fb7 100644 --- a/api-specs/api/types/me/updates/MyCartChangeLineItemQuantityAction.raml +++ b/api-specs/api/types/me/updates/MyCartChangeLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#change-lineitem-quantity type: MyCartUpdateAction displayName: MyCartChangeLineItemQuantityAction discriminatorValue: changeLineItemQuantity diff --git a/api-specs/api/types/me/updates/MyCartChangeTaxModeAction.raml b/api-specs/api/types/me/updates/MyCartChangeTaxModeAction.raml index 08f4811f73..09c3ccc4a7 100644 --- a/api-specs/api/types/me/updates/MyCartChangeTaxModeAction.raml +++ b/api-specs/api/types/me/updates/MyCartChangeTaxModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#change-taxmode type: MyCartUpdateAction displayName: MyCartChangeTaxModeAction discriminatorValue: changeTaxMode diff --git a/api-specs/api/types/me/updates/MyCartRecalculateAction.raml b/api-specs/api/types/me/updates/MyCartRecalculateAction.raml index d4a8da285b..fa6744fc2e 100644 --- a/api-specs/api/types/me/updates/MyCartRecalculateAction.raml +++ b/api-specs/api/types/me/updates/MyCartRecalculateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#recalculate type: MyCartUpdateAction displayName: MyCartRecalculateAction discriminatorValue: recalculate diff --git a/api-specs/api/types/me/updates/MyCartRemoveDiscountCodeAction.raml b/api-specs/api/types/me/updates/MyCartRemoveDiscountCodeAction.raml index 03bbfe9acd..0cd893c24c 100644 --- a/api-specs/api/types/me/updates/MyCartRemoveDiscountCodeAction.raml +++ b/api-specs/api/types/me/updates/MyCartRemoveDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#remove-discountcode type: MyCartUpdateAction displayName: MyCartRemoveDiscountCodeAction example: !include ../../../examples/Cart/CartRemoveDiscountCodeAction.json diff --git a/api-specs/api/types/me/updates/MyCartRemoveItemShippingAddressAction.raml b/api-specs/api/types/me/updates/MyCartRemoveItemShippingAddressAction.raml index dc68135cb4..30624f74dd 100644 --- a/api-specs/api/types/me/updates/MyCartRemoveItemShippingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCartRemoveItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#remove-itemshippingaddress type: MyCartUpdateAction displayName: MyCartRemoveItemShippingAddressAction discriminatorValue: removeItemShippingAddress diff --git a/api-specs/api/types/me/updates/MyCartRemoveLineItemAction.raml b/api-specs/api/types/me/updates/MyCartRemoveLineItemAction.raml index 552bde14e2..afceaa1afb 100644 --- a/api-specs/api/types/me/updates/MyCartRemoveLineItemAction.raml +++ b/api-specs/api/types/me/updates/MyCartRemoveLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#remove-lineitem type: MyCartUpdateAction displayName: MyCartRemoveLineItemAction discriminatorValue: removeLineItem diff --git a/api-specs/api/types/me/updates/MyCartRemovePaymentAction.raml b/api-specs/api/types/me/updates/MyCartRemovePaymentAction.raml index 118e3c9911..525b23d240 100644 --- a/api-specs/api/types/me/updates/MyCartRemovePaymentAction.raml +++ b/api-specs/api/types/me/updates/MyCartRemovePaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#remove-payment type: MyCartUpdateAction displayName: MyCartRemovePaymentAction discriminatorValue: removePayment diff --git a/api-specs/api/types/me/updates/MyCartSetBillingAddressAction.raml b/api-specs/api/types/me/updates/MyCartSetBillingAddressAction.raml index 09624293bf..f5633c51c6 100644 --- a/api-specs/api/types/me/updates/MyCartSetBillingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-billing-address type: MyCartUpdateAction displayName: MyCartSetBillingAddressAction discriminatorValue: setBillingAddress diff --git a/api-specs/api/types/me/updates/MyCartSetBusinessUnitAction.raml b/api-specs/api/types/me/updates/MyCartSetBusinessUnitAction.raml index 866e0c5ad3..230baea2cc 100644 --- a/api-specs/api/types/me/updates/MyCartSetBusinessUnitAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetBusinessUnitAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-business-unit type: MyCartUpdateAction displayName: MyCartSetBusinessUnitAction discriminatorValue: setBusinessUnit diff --git a/api-specs/api/types/me/updates/MyCartSetCountryAction.raml b/api-specs/api/types/me/updates/MyCartSetCountryAction.raml index 0cbbe3f555..2c807be8c7 100644 --- a/api-specs/api/types/me/updates/MyCartSetCountryAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetCountryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-country type: MyCartUpdateAction displayName: MyCartSetCountryAction discriminatorValue: setCountry diff --git a/api-specs/api/types/me/updates/MyCartSetCustomFieldAction.raml b/api-specs/api/types/me/updates/MyCartSetCustomFieldAction.raml index afbfc9051b..5e37a65909 100644 --- a/api-specs/api/types/me/updates/MyCartSetCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-customfield type: MyCartUpdateAction displayName: MyCartSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/me/updates/MyCartSetCustomTypeAction.raml b/api-specs/api/types/me/updates/MyCartSetCustomTypeAction.raml index 2417360073..66a71bf176 100644 --- a/api-specs/api/types/me/updates/MyCartSetCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-custom-type type: MyCartUpdateAction displayName: MyCartSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/me/updates/MyCartSetCustomerEmailAction.raml b/api-specs/api/types/me/updates/MyCartSetCustomerEmailAction.raml index a753241bb0..f3a3f225d1 100644 --- a/api-specs/api/types/me/updates/MyCartSetCustomerEmailAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetCustomerEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-customer-email type: MyCartUpdateAction displayName: MyCartSetCustomerEmailAction discriminatorValue: setCustomerEmail diff --git a/api-specs/api/types/me/updates/MyCartSetDeleteDaysAfterLastModificationAction.raml b/api-specs/api/types/me/updates/MyCartSetDeleteDaysAfterLastModificationAction.raml index ca35a536d9..a1a2a7f441 100644 --- a/api-specs/api/types/me/updates/MyCartSetDeleteDaysAfterLastModificationAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetDeleteDaysAfterLastModificationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-deletedaysafterlastmodification-beta type: MyCartUpdateAction displayName: MyCartSetDeleteDaysAfterLastModificationAction discriminatorValue: setDeleteDaysAfterLastModification diff --git a/api-specs/api/types/me/updates/MyCartSetLineItemCustomFieldAction.raml b/api-specs/api/types/me/updates/MyCartSetLineItemCustomFieldAction.raml index 204c33e5a4..7004a42bec 100644 --- a/api-specs/api/types/me/updates/MyCartSetLineItemCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-lineitem-customfield type: MyCartUpdateAction displayName: MyCartSetLineItemCustomFieldAction discriminatorValue: setLineItemCustomField diff --git a/api-specs/api/types/me/updates/MyCartSetLineItemCustomTypeAction.raml b/api-specs/api/types/me/updates/MyCartSetLineItemCustomTypeAction.raml index 19da9a04c6..8adc2594dd 100644 --- a/api-specs/api/types/me/updates/MyCartSetLineItemCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-lineitem-custom-type type: MyCartUpdateAction displayName: MyCartSetLineItemCustomTypeAction discriminatorValue: setLineItemCustomType diff --git a/api-specs/api/types/me/updates/MyCartSetLineItemDistributionChannelAction.raml b/api-specs/api/types/me/updates/MyCartSetLineItemDistributionChannelAction.raml index fcd68a0f60..086b953eb9 100644 --- a/api-specs/api/types/me/updates/MyCartSetLineItemDistributionChannelAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetLineItemDistributionChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-lineitem-distributionchannel type: MyCartUpdateAction displayName: MyCartSetLineItemDistributionChannelAction discriminatorValue: setLineItemDistributionChannel diff --git a/api-specs/api/types/me/updates/MyCartSetLineItemShippingDetailsAction.raml b/api-specs/api/types/me/updates/MyCartSetLineItemShippingDetailsAction.raml index 7f317e964c..74359389af 100644 --- a/api-specs/api/types/me/updates/MyCartSetLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-lineitem-shippingdetails type: MyCartUpdateAction displayName: MyCartSetLineItemShippingDetailsAction discriminatorValue: setLineItemShippingDetails diff --git a/api-specs/api/types/me/updates/MyCartSetLineItemSupplyChannelAction.raml b/api-specs/api/types/me/updates/MyCartSetLineItemSupplyChannelAction.raml index 7937425b04..13037a9633 100644 --- a/api-specs/api/types/me/updates/MyCartSetLineItemSupplyChannelAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetLineItemSupplyChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-lineitem-supplychannel type: MyCartUpdateAction displayName: MyCartSetLineItemSupplyChannelAction discriminatorValue: setLineItemSupplyChannel diff --git a/api-specs/api/types/me/updates/MyCartSetLocaleAction.raml b/api-specs/api/types/me/updates/MyCartSetLocaleAction.raml index 54737727b2..d412c8f1f9 100644 --- a/api-specs/api/types/me/updates/MyCartSetLocaleAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-locale type: MyCartUpdateAction displayName: MyCartSetLocaleAction discriminatorValue: setLocale diff --git a/api-specs/api/types/me/updates/MyCartSetShippingAddressAction.raml b/api-specs/api/types/me/updates/MyCartSetShippingAddressAction.raml index 2a979f2b03..cb1f2d38fb 100644 --- a/api-specs/api/types/me/updates/MyCartSetShippingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-shipping-address type: MyCartUpdateAction displayName: MyCartSetShippingAddressAction discriminatorValue: setShippingAddress diff --git a/api-specs/api/types/me/updates/MyCartSetShippingMethodAction.raml b/api-specs/api/types/me/updates/MyCartSetShippingMethodAction.raml index a6fd9190eb..b1fd1405ec 100644 --- a/api-specs/api/types/me/updates/MyCartSetShippingMethodAction.raml +++ b/api-specs/api/types/me/updates/MyCartSetShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#set-shipping-method type: MyCartUpdateAction displayName: MyCartSetShippingMethodAction discriminatorValue: setShippingMethod diff --git a/api-specs/api/types/me/updates/MyCartUpdateItemShippingAddressAction.raml b/api-specs/api/types/me/updates/MyCartUpdateItemShippingAddressAction.raml index 9690a700ef..11ad57a2a6 100644 --- a/api-specs/api/types/me/updates/MyCartUpdateItemShippingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCartUpdateItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-carts#update-itemshippingaddress type: MyCartUpdateAction displayName: MyCartUpdateItemShippingAddressAction discriminatorValue: updateItemShippingAddress diff --git a/api-specs/api/types/me/updates/MyCustomerAddAddressAction.raml b/api-specs/api/types/me/updates/MyCustomerAddAddressAction.raml index add8e1328e..58bf640d5a 100644 --- a/api-specs/api/types/me/updates/MyCustomerAddAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerAddAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#add-address type: MyCustomerUpdateAction displayName: MyCustomerAddAddressAction discriminatorValue: addAddress diff --git a/api-specs/api/types/me/updates/MyCustomerAddBillingAddressIdAction.raml b/api-specs/api/types/me/updates/MyCustomerAddBillingAddressIdAction.raml index 8b2504ac65..0f0fb903ef 100644 --- a/api-specs/api/types/me/updates/MyCustomerAddBillingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerAddBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#add-billing-address-id type: MyCustomerUpdateAction displayName: MyCustomerAddBillingAddressIdAction discriminatorValue: addBillingAddressId diff --git a/api-specs/api/types/me/updates/MyCustomerAddShippingAddressIdAction.raml b/api-specs/api/types/me/updates/MyCustomerAddShippingAddressIdAction.raml index 0e53669cf7..c5ec1ff72b 100644 --- a/api-specs/api/types/me/updates/MyCustomerAddShippingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerAddShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#add-shipping-address-id type: MyCustomerUpdateAction displayName: MyCustomerAddShippingAddressIdAction discriminatorValue: addShippingAddressId diff --git a/api-specs/api/types/me/updates/MyCustomerChangeAddressAction.raml b/api-specs/api/types/me/updates/MyCustomerChangeAddressAction.raml index ba1d381954..b38cb5e62a 100644 --- a/api-specs/api/types/me/updates/MyCustomerChangeAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerChangeAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#change-address type: MyCustomerUpdateAction displayName: MyCustomerChangeAddressAction discriminatorValue: changeAddress diff --git a/api-specs/api/types/me/updates/MyCustomerChangeEmailAction.raml b/api-specs/api/types/me/updates/MyCustomerChangeEmailAction.raml index 6454ae6307..4b1ceb5b62 100644 --- a/api-specs/api/types/me/updates/MyCustomerChangeEmailAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerChangeEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#change-email type: MyCustomerUpdateAction displayName: MyCustomerChangeEmailAction discriminatorValue: changeEmail diff --git a/api-specs/api/types/me/updates/MyCustomerRemoveAddressAction.raml b/api-specs/api/types/me/updates/MyCustomerRemoveAddressAction.raml index 30c3f78939..c4c1171a4e 100644 --- a/api-specs/api/types/me/updates/MyCustomerRemoveAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerRemoveAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#remove-address type: MyCustomerUpdateAction displayName: MyCustomerRemoveAddressAction discriminatorValue: removeAddress diff --git a/api-specs/api/types/me/updates/MyCustomerRemoveBillingAddressIdAction.raml b/api-specs/api/types/me/updates/MyCustomerRemoveBillingAddressIdAction.raml index 177b3147ea..295d16a84a 100644 --- a/api-specs/api/types/me/updates/MyCustomerRemoveBillingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerRemoveBillingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#remove-billing-address-id type: MyCustomerUpdateAction displayName: MyCustomerRemoveBillingAddressIdAction discriminatorValue: removeBillingAddressId diff --git a/api-specs/api/types/me/updates/MyCustomerRemoveShippingAddressIdAction.raml b/api-specs/api/types/me/updates/MyCustomerRemoveShippingAddressIdAction.raml index 113086fe53..ef8680f48b 100644 --- a/api-specs/api/types/me/updates/MyCustomerRemoveShippingAddressIdAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerRemoveShippingAddressIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#remove-shipping-address-id type: MyCustomerUpdateAction displayName: MyCustomerRemoveShippingAddressIdAction discriminatorValue: removeShippingAddressId diff --git a/api-specs/api/types/me/updates/MyCustomerSetCompanyNameAction.raml b/api-specs/api/types/me/updates/MyCustomerSetCompanyNameAction.raml index c19f9e7bfe..e67f041547 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetCompanyNameAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetCompanyNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-company-name type: MyCustomerUpdateAction displayName: MyCustomerSetCompanyNameAction discriminatorValue: setCompanyName diff --git a/api-specs/api/types/me/updates/MyCustomerSetCustomFieldAction.raml b/api-specs/api/types/me/updates/MyCustomerSetCustomFieldAction.raml index b6ef7b101b..ef529b8e2e 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-customfield type: MyCustomerUpdateAction displayName: MyCustomerSetCustomFieldAction example: !include ../../../examples/Customer/CustomerSetCustomFieldAction.json diff --git a/api-specs/api/types/me/updates/MyCustomerSetCustomTypeAction.raml b/api-specs/api/types/me/updates/MyCustomerSetCustomTypeAction.raml index dd709b928b..f0cf267740 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-custom-type type: MyCustomerUpdateAction displayName: MyCustomerSetCustomTypeAction example: !include ../../../examples/Customer/CustomerSetCustomTypeAction.json diff --git a/api-specs/api/types/me/updates/MyCustomerSetDateOfBirthAction.raml b/api-specs/api/types/me/updates/MyCustomerSetDateOfBirthAction.raml index 1071bb5481..cc3e6ed89f 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetDateOfBirthAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetDateOfBirthAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-date-of-birth type: MyCustomerUpdateAction displayName: MyCustomerSetDateOfBirthAction discriminatorValue: setDateOfBirth diff --git a/api-specs/api/types/me/updates/MyCustomerSetDefaultBillingAddressAction.raml b/api-specs/api/types/me/updates/MyCustomerSetDefaultBillingAddressAction.raml index 6bfd7c7064..5adc22e575 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetDefaultBillingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetDefaultBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-default-billing-address type: MyCustomerUpdateAction displayName: MyCustomerSetDefaultBillingAddressAction discriminatorValue: setDefaultBillingAddress diff --git a/api-specs/api/types/me/updates/MyCustomerSetDefaultShippingAddressAction.raml b/api-specs/api/types/me/updates/MyCustomerSetDefaultShippingAddressAction.raml index 092133aac3..55863ac225 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetDefaultShippingAddressAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetDefaultShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-default-shipping-address type: MyCustomerUpdateAction displayName: MyCustomerSetDefaultShippingAddressAction discriminatorValue: setDefaultShippingAddress diff --git a/api-specs/api/types/me/updates/MyCustomerSetFirstNameAction.raml b/api-specs/api/types/me/updates/MyCustomerSetFirstNameAction.raml index be8c11a93c..dc5436714c 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetFirstNameAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetFirstNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-first-name type: MyCustomerUpdateAction displayName: MyCustomerSetFirstNameAction discriminatorValue: setFirstName diff --git a/api-specs/api/types/me/updates/MyCustomerSetLastNameAction.raml b/api-specs/api/types/me/updates/MyCustomerSetLastNameAction.raml index bace01c116..b52ee4fb2b 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetLastNameAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetLastNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-last-name type: MyCustomerUpdateAction displayName: MyCustomerSetLastNameAction discriminatorValue: setLastName diff --git a/api-specs/api/types/me/updates/MyCustomerSetLocaleAction.raml b/api-specs/api/types/me/updates/MyCustomerSetLocaleAction.raml index facdb4a1da..cec791a2e9 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetLocaleAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-locale type: MyCustomerUpdateAction displayName: MyCustomerSetLocaleAction discriminatorValue: setLocale diff --git a/api-specs/api/types/me/updates/MyCustomerSetMiddleNameAction.raml b/api-specs/api/types/me/updates/MyCustomerSetMiddleNameAction.raml index 901c665c86..c5fb1f122d 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetMiddleNameAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetMiddleNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-middle-name type: MyCustomerUpdateAction displayName: MyCustomerSetMiddleNameAction discriminatorValue: setMiddleName diff --git a/api-specs/api/types/me/updates/MyCustomerSetSalutationAction.raml b/api-specs/api/types/me/updates/MyCustomerSetSalutationAction.raml index 486d587184..40ee63bb02 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetSalutationAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetSalutationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-salutation type: MyCustomerUpdateAction displayName: MyCustomerSetSalutationAction discriminatorValue: setSalutation diff --git a/api-specs/api/types/me/updates/MyCustomerSetTitleAction.raml b/api-specs/api/types/me/updates/MyCustomerSetTitleAction.raml index 52218406d8..a28c69500a 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetTitleAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetTitleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-title type: MyCustomerUpdateAction displayName: MyCustomerSetTitleAction discriminatorValue: setTitle diff --git a/api-specs/api/types/me/updates/MyCustomerSetVatIdAction.raml b/api-specs/api/types/me/updates/MyCustomerSetVatIdAction.raml index 51dcd051d3..221f56c2cc 100644 --- a/api-specs/api/types/me/updates/MyCustomerSetVatIdAction.raml +++ b/api-specs/api/types/me/updates/MyCustomerSetVatIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-profile#set-vat-id type: MyCustomerUpdateAction displayName: MyCustomerSetVatIdAction discriminatorValue: setVatId diff --git a/api-specs/api/types/me/updates/MyPaymentAddTransactionAction.raml b/api-specs/api/types/me/updates/MyPaymentAddTransactionAction.raml index e6f6d0f371..3a2393129d 100644 --- a/api-specs/api/types/me/updates/MyPaymentAddTransactionAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentAddTransactionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#add-transaction type: MyPaymentUpdateAction displayName: MyPaymentAddTransactionAction discriminatorValue: addTransaction diff --git a/api-specs/api/types/me/updates/MyPaymentChangeAmountPlannedAction.raml b/api-specs/api/types/me/updates/MyPaymentChangeAmountPlannedAction.raml index 2e5b5afbfb..1f842dcfd7 100644 --- a/api-specs/api/types/me/updates/MyPaymentChangeAmountPlannedAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentChangeAmountPlannedAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#change-amountplanned type: MyPaymentUpdateAction displayName: MyPaymentChangeAmountPlannedAction discriminatorValue: changeAmountPlanned diff --git a/api-specs/api/types/me/updates/MyPaymentSetCustomFieldAction.raml b/api-specs/api/types/me/updates/MyPaymentSetCustomFieldAction.raml index 45e82c0ea8..6a52bbf866 100644 --- a/api-specs/api/types/me/updates/MyPaymentSetCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#set-customfield type: MyPaymentUpdateAction displayName: MyPaymentSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/me/updates/MyPaymentSetMethodInfoInterfaceAction.raml b/api-specs/api/types/me/updates/MyPaymentSetMethodInfoInterfaceAction.raml index 51a21bc145..5dea74cc5a 100644 --- a/api-specs/api/types/me/updates/MyPaymentSetMethodInfoInterfaceAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentSetMethodInfoInterfaceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#set-methodinfointerface type: MyPaymentUpdateAction displayName: MyPaymentSetMethodInfoInterfaceAction discriminatorValue: setMethodInfoInterface diff --git a/api-specs/api/types/me/updates/MyPaymentSetMethodInfoMethodAction.raml b/api-specs/api/types/me/updates/MyPaymentSetMethodInfoMethodAction.raml index 68a0ac287d..345ce1b914 100644 --- a/api-specs/api/types/me/updates/MyPaymentSetMethodInfoMethodAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentSetMethodInfoMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#set-methodinfomethod type: MyPaymentUpdateAction displayName: MyPaymentSetMethodInfoMethodAction discriminatorValue: setMethodInfoMethod diff --git a/api-specs/api/types/me/updates/MyPaymentSetMethodInfoNameAction.raml b/api-specs/api/types/me/updates/MyPaymentSetMethodInfoNameAction.raml index bca429a967..291b3412a4 100644 --- a/api-specs/api/types/me/updates/MyPaymentSetMethodInfoNameAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentSetMethodInfoNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#set-methodinfoname type: MyPaymentUpdateAction displayName: MyPaymentSetMethodInfoNameAction discriminatorValue: setMethodInfoName diff --git a/api-specs/api/types/me/updates/MyPaymentSetTransactionCustomFieldAction.raml b/api-specs/api/types/me/updates/MyPaymentSetTransactionCustomFieldAction.raml index d1e667e380..2ad9c27573 100644 --- a/api-specs/api/types/me/updates/MyPaymentSetTransactionCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyPaymentSetTransactionCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-payments#set-transaction-customfield type: MyPaymentUpdateAction displayName: MyPaymentSetTransactionCustomFieldAction discriminatorValue: setTransactionCustomField diff --git a/api-specs/api/types/me/updates/MyQuoteChangeMyQuoteStateAction.raml b/api-specs/api/types/me/updates/MyQuoteChangeMyQuoteStateAction.raml index b9e027a397..e5936a259f 100644 --- a/api-specs/api/types/me/updates/MyQuoteChangeMyQuoteStateAction.raml +++ b/api-specs/api/types/me/updates/MyQuoteChangeMyQuoteStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-quotes#change-my-quote-state type: MyQuoteUpdateAction displayName: MyQuoteChangeMyQuoteStateAction discriminatorValue: changeMyQuoteState diff --git a/api-specs/api/types/me/updates/MyQuoteRequestCancelAction.raml b/api-specs/api/types/me/updates/MyQuoteRequestCancelAction.raml index 9ae222f6b1..14a01260ee 100644 --- a/api-specs/api/types/me/updates/MyQuoteRequestCancelAction.raml +++ b/api-specs/api/types/me/updates/MyQuoteRequestCancelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-quote-requests#cancel-quote-request type: MyQuoteRequestUpdateAction displayName: MyQuoteRequestCancelAction discriminatorValue: cancelQuoteRequest diff --git a/api-specs/api/types/me/updates/MyShoppingListAddLineItemAction.raml b/api-specs/api/types/me/updates/MyShoppingListAddLineItemAction.raml index a358c5abba..f0f8c59635 100644 --- a/api-specs/api/types/me/updates/MyShoppingListAddLineItemAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListAddLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#add-shoppinglistlineitem type: MyShoppingListUpdateAction displayName: MyShoppingListAddLineItemAction diff --git a/api-specs/api/types/me/updates/MyShoppingListAddTextLineItemAction.raml b/api-specs/api/types/me/updates/MyShoppingListAddTextLineItemAction.raml index d50aba51f1..c96a3167e1 100644 --- a/api-specs/api/types/me/updates/MyShoppingListAddTextLineItemAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListAddTextLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#add-textlineitem type: MyShoppingListUpdateAction displayName: MyShoppingListAddTextLineItemAction diff --git a/api-specs/api/types/me/updates/MyShoppingListChangeLineItemQuantityAction.raml b/api-specs/api/types/me/updates/MyShoppingListChangeLineItemQuantityAction.raml index ccc907a8c9..fb8d4aef8f 100644 --- a/api-specs/api/types/me/updates/MyShoppingListChangeLineItemQuantityAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListChangeLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#change-shoppinglistlineitem-quantity type: MyShoppingListUpdateAction displayName: MyShoppingListChangeLineItemQuantityAction discriminatorValue: changeLineItemQuantity diff --git a/api-specs/api/types/me/updates/MyShoppingListChangeLineItemsOrderAction.raml b/api-specs/api/types/me/updates/MyShoppingListChangeLineItemsOrderAction.raml index c3d0803e99..7e433562ff 100644 --- a/api-specs/api/types/me/updates/MyShoppingListChangeLineItemsOrderAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListChangeLineItemsOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#change-shoppinglistlineitem-order type: MyShoppingListUpdateAction displayName: MyShoppingListChangeLineItemsOrderAction discriminatorValue: changeLineItemsOrder diff --git a/api-specs/api/types/me/updates/MyShoppingListChangeNameAction.raml b/api-specs/api/types/me/updates/MyShoppingListChangeNameAction.raml index 23e85d142e..45022f9662 100644 --- a/api-specs/api/types/me/updates/MyShoppingListChangeNameAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#change-name type: MyShoppingListUpdateAction displayName: MyShoppingListChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemNameAction.raml b/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemNameAction.raml index 47d79d7f63..17902ccc38 100644 --- a/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemNameAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#change-textlineitem-name type: MyShoppingListUpdateAction displayName: MyShoppingListChangeTextLineItemNameAction discriminatorValue: changeTextLineItemName diff --git a/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemQuantityAction.raml b/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemQuantityAction.raml index 56ac958230..99cbf21521 100644 --- a/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemQuantityAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#change-textlineitem-quantity type: MyShoppingListUpdateAction displayName: MyShoppingListChangeTextLineItemQuantityAction discriminatorValue: changeTextLineItemQuantity diff --git a/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemsOrderAction.raml b/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemsOrderAction.raml index bb86fc7439..6d084f00c3 100644 --- a/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemsOrderAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListChangeTextLineItemsOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#change-textlineitems-order type: MyShoppingListUpdateAction displayName: MyShoppingListChangeTextLineItemsOrderAction discriminatorValue: changeTextLineItemsOrder diff --git a/api-specs/api/types/me/updates/MyShoppingListRemoveLineItemAction.raml b/api-specs/api/types/me/updates/MyShoppingListRemoveLineItemAction.raml index 6d7771425b..c63ec8eae4 100644 --- a/api-specs/api/types/me/updates/MyShoppingListRemoveLineItemAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListRemoveLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#remove-shoppinglistlineitem type: MyShoppingListUpdateAction displayName: MyShoppingListRemoveLineItemAction discriminatorValue: removeLineItem diff --git a/api-specs/api/types/me/updates/MyShoppingListRemoveTextLineItemAction.raml b/api-specs/api/types/me/updates/MyShoppingListRemoveTextLineItemAction.raml index aadfef3436..f1a1a327c0 100644 --- a/api-specs/api/types/me/updates/MyShoppingListRemoveTextLineItemAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListRemoveTextLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#remove-textlineitem type: MyShoppingListUpdateAction displayName: MyShoppingListRemoveTextLineItemAction discriminatorValue: removeTextLineItem diff --git a/api-specs/api/types/me/updates/MyShoppingListSetCustomFieldAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetCustomFieldAction.raml index b307203962..82706b0557 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-customfield type: MyShoppingListUpdateAction displayName: MyShoppingListSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/me/updates/MyShoppingListSetCustomTypeAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetCustomTypeAction.raml index d73c6b93a4..efe1de1724 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-custom-type type: MyShoppingListUpdateAction displayName: MyShoppingListSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/me/updates/MyShoppingListSetDeleteDaysAfterLastModificationAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetDeleteDaysAfterLastModificationAction.raml index 9abef32481..7a156f3f4c 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetDeleteDaysAfterLastModificationAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetDeleteDaysAfterLastModificationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-deletedaysafterlastmodification type: MyShoppingListUpdateAction displayName: MyShoppingListSetDeleteDaysAfterLastModificationAction discriminatorValue: setDeleteDaysAfterLastModification diff --git a/api-specs/api/types/me/updates/MyShoppingListSetDescriptionAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetDescriptionAction.raml index 794d35f606..08b4729ed5 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetDescriptionAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-description type: MyShoppingListUpdateAction displayName: MyShoppingListSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomFieldAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomFieldAction.raml index a561f0c9bf..d0a427d00d 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-shoppinglistlineitem-customfield type: MyShoppingListUpdateAction displayName: MyShoppingListSetLineItemCustomFieldAction discriminatorValue: setLineItemCustomField diff --git a/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomTypeAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomTypeAction.raml index 80afebfaaa..f37f32cc77 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-shoppinglistlineitem-custom-type type: MyShoppingListUpdateAction displayName: MyShoppingListSetLineItemCustomTypeAction discriminatorValue: setLineItemCustomType diff --git a/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomFieldAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomFieldAction.raml index 9f05ebeeb3..553285c11b 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomFieldAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-textlineitems-customfield type: MyShoppingListUpdateAction displayName: MyShoppingListSetTextLineItemCustomFieldAction discriminatorValue: setTextLineItemCustomField diff --git a/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomTypeAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomTypeAction.raml index 1252817dd4..b03e54a498 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomTypeAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-textlineitems-custom-type type: MyShoppingListUpdateAction displayName: MyShoppingListSetTextLineItemCustomTypeAction discriminatorValue: setTextLineItemCustomType diff --git a/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemDescriptionAction.raml b/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemDescriptionAction.raml index 8f066b11c9..821ac092db 100644 --- a/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemDescriptionAction.raml +++ b/api-specs/api/types/me/updates/MyShoppingListSetTextLineItemDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Me -(docs-uri): https://docs.commercetools.com/api/projects/me-shoppingLists#set-textlineitem-description type: MyShoppingListUpdateAction displayName: MyShoppingListSetTextLineItemDescriptionAction discriminatorValue: setTextLineItemDescription diff --git a/api-specs/api/types/message/AssociateRoleBuyerAssignableChangedMessage.raml b/api-specs/api/types/message/AssociateRoleBuyerAssignableChangedMessage.raml index bcb1b540c1..6f1dcc97bd 100644 --- a/api-specs/api/types/message/AssociateRoleBuyerAssignableChangedMessage.raml +++ b/api-specs/api/types/message/AssociateRoleBuyerAssignableChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolebuyerassignablechanged type: Message displayName: AssociateRoleBuyerAssignableChangedMessage discriminatorValue: AssociateRoleBuyerAssignableChanged diff --git a/api-specs/api/types/message/AssociateRoleNameChangedMessage.raml b/api-specs/api/types/message/AssociateRoleNameChangedMessage.raml index 0f9f10732f..4b0907f453 100644 --- a/api-specs/api/types/message/AssociateRoleNameChangedMessage.raml +++ b/api-specs/api/types/message/AssociateRoleNameChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolenamesetmessage type: Message displayName: AssociateRoleNameSetMessage discriminatorValue: AssociateRoleNameSet diff --git a/api-specs/api/types/message/AssociateRolePermissionAddedMessage.raml b/api-specs/api/types/message/AssociateRolePermissionAddedMessage.raml index f1ef945a3e..9f37c12f4e 100644 --- a/api-specs/api/types/message/AssociateRolePermissionAddedMessage.raml +++ b/api-specs/api/types/message/AssociateRolePermissionAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolepermissionadded type: Message displayName: AssociateRolePermissionAddedMessage discriminatorValue: AssociateRolePermissionAdded diff --git a/api-specs/api/types/message/AssociateRolePermissionRemovedMessage.raml b/api-specs/api/types/message/AssociateRolePermissionRemovedMessage.raml index 171f32fd8f..8e4b1b038b 100644 --- a/api-specs/api/types/message/AssociateRolePermissionRemovedMessage.raml +++ b/api-specs/api/types/message/AssociateRolePermissionRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolepermissionremoved type: Message displayName: AssociateRolePermissionRemovedMessage discriminatorValue: AssociateRolePermissionRemoved diff --git a/api-specs/api/types/message/AssociateRolePermissionsSetMessage.raml b/api-specs/api/types/message/AssociateRolePermissionsSetMessage.raml index b95ea7ccbf..9fc499603e 100644 --- a/api-specs/api/types/message/AssociateRolePermissionsSetMessage.raml +++ b/api-specs/api/types/message/AssociateRolePermissionsSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolepermissionsset type: Message displayName: AssociateRolePermissionsSetMessage discriminatorValue: AssociateRolePermissionsSet diff --git a/api-specs/api/types/message/BusinessUnitAddressAddedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressAddedMessage.raml index 27469fb3c2..f23263a52f 100644 --- a/api-specs/api/types/message/BusinessUnitAddressAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitaddressaddedmessage type: Message displayName: BusinessUnitAddressAddedMessage discriminatorValue: BusinessUnitAddressAdded diff --git a/api-specs/api/types/message/BusinessUnitAddressChangedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressChangedMessage.raml index 985e990227..cec69e7f2e 100644 --- a/api-specs/api/types/message/BusinessUnitAddressChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitaddresschangedmessage type: Message displayName: BusinessUnitAddressChangedMessage discriminatorValue: BusinessUnitAddressChanged diff --git a/api-specs/api/types/message/BusinessUnitAddressCustomFieldAddedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressCustomFieldAddedMessage.raml index 2aab224911..77a150ce5c 100644 --- a/api-specs/api/types/message/BusinessUnitAddressCustomFieldAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressCustomFieldAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-field-added type: Message displayName: BusinessUnitAddressCustomFieldAddedMessage discriminatorValue: BusinessUnitAddressCustomFieldAdded diff --git a/api-specs/api/types/message/BusinessUnitAddressCustomFieldChangedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressCustomFieldChangedMessage.raml index d573574766..de24bbf0f1 100644 --- a/api-specs/api/types/message/BusinessUnitAddressCustomFieldChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressCustomFieldChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-field-changed type: Message displayName: BusinessUnitAddressCustomFieldChangedMessage discriminatorValue: BusinessUnitAddressCustomFieldChanged diff --git a/api-specs/api/types/message/BusinessUnitAddressCustomFieldRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressCustomFieldRemovedMessage.raml index 71277b8c78..f0374235b0 100644 --- a/api-specs/api/types/message/BusinessUnitAddressCustomFieldRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressCustomFieldRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-field-removed type: Message displayName: BusinessUnitAddressCustomFieldRemovedMessage discriminatorValue: BusinessUnitAddressCustomFieldRemoved diff --git a/api-specs/api/types/message/BusinessUnitAddressCustomTypeRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressCustomTypeRemovedMessage.raml index 0683a46c7a..cc3ca056d1 100644 --- a/api-specs/api/types/message/BusinessUnitAddressCustomTypeRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressCustomTypeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-type-removed type: Message displayName: BusinessUnitAddressCustomTypeRemovedMessage discriminatorValue: BusinessUnitAddressCustomTypeRemoved diff --git a/api-specs/api/types/message/BusinessUnitAddressCustomTypeSetMessage.raml b/api-specs/api/types/message/BusinessUnitAddressCustomTypeSetMessage.raml index 350ecf23fe..7244528ef3 100644 --- a/api-specs/api/types/message/BusinessUnitAddressCustomTypeSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressCustomTypeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-type-set type: Message displayName: BusinessUnitAddressCustomTypeSetMessage discriminatorValue: BusinessUnitAddressCustomTypeSet diff --git a/api-specs/api/types/message/BusinessUnitAddressRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitAddressRemovedMessage.raml index 33a885d77e..581519b555 100644 --- a/api-specs/api/types/message/BusinessUnitAddressRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAddressRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitaddressremovedmessage type: Message displayName: BusinessUnitAddressRemovedMessage discriminatorValue: BusinessUnitAddressRemoved diff --git a/api-specs/api/types/message/BusinessUnitAssociateAddedMessage.raml b/api-specs/api/types/message/BusinessUnitAssociateAddedMessage.raml index 50c7b1ab4d..3badab6de6 100644 --- a/api-specs/api/types/message/BusinessUnitAssociateAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAssociateAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociateaddedmessage type: Message displayName: BusinessUnitAssociateAddedMessage discriminatorValue: BusinessUnitAssociateAdded diff --git a/api-specs/api/types/message/BusinessUnitAssociateChangedMessage.raml b/api-specs/api/types/message/BusinessUnitAssociateChangedMessage.raml index 5da61a9c06..88ce465e3b 100644 --- a/api-specs/api/types/message/BusinessUnitAssociateChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAssociateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociatechangedmessage type: Message displayName: BusinessUnitAssociateChangedMessage discriminatorValue: BusinessUnitAssociateChanged diff --git a/api-specs/api/types/message/BusinessUnitAssociateModeChangedMessage.raml b/api-specs/api/types/message/BusinessUnitAssociateModeChangedMessage.raml index ccbc9d9442..a1fa87bab3 100644 --- a/api-specs/api/types/message/BusinessUnitAssociateModeChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAssociateModeChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociateemodechangedmessage type: Message displayName: BusinessUnitAssociateModeChangedMessage discriminatorValue: BusinessUnitAssociateModeChanged diff --git a/api-specs/api/types/message/BusinessUnitAssociateRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitAssociateRemovedMessage.raml index 24fc93dd3b..ef4bcaf1b2 100644 --- a/api-specs/api/types/message/BusinessUnitAssociateRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAssociateRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociateremovedmessage type: Message displayName: BusinessUnitAssociateRemovedMessage discriminatorValue: BusinessUnitAssociateRemoved diff --git a/api-specs/api/types/message/BusinessUnitAssociatesSetMessage.raml b/api-specs/api/types/message/BusinessUnitAssociatesSetMessage.raml index bf18aafdd7..28ec05b936 100644 --- a/api-specs/api/types/message/BusinessUnitAssociatesSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitAssociatesSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociatessetmessage type: Message displayName: BusinessUnitAssociatesSetMessage discriminatorValue: BusinessUnitAssociatesSet diff --git a/api-specs/api/types/message/BusinessUnitBillingAddressAddedMessage.raml b/api-specs/api/types/message/BusinessUnitBillingAddressAddedMessage.raml index 82c4c81432..67d9494381 100644 --- a/api-specs/api/types/message/BusinessUnitBillingAddressAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitBillingAddressAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitbillingaddressaddedmessage type: Message displayName: BusinessUnitBillingAddressAddedMessage discriminatorValue: BusinessUnitBillingAddressAdded diff --git a/api-specs/api/types/message/BusinessUnitBillingAddressRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitBillingAddressRemovedMessage.raml index 4a5481e416..25a64ba0a2 100644 --- a/api-specs/api/types/message/BusinessUnitBillingAddressRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitBillingAddressRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitbillingaddressremovedmessage type: Message displayName: BusinessUnitBillingAddressRemovedMessage discriminatorValue: BusinessUnitBillingAddressRemoved diff --git a/api-specs/api/types/message/BusinessUnitContactEmailSetMessage.raml b/api-specs/api/types/message/BusinessUnitContactEmailSetMessage.raml index 8f80371e3c..68f92adeda 100644 --- a/api-specs/api/types/message/BusinessUnitContactEmailSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitContactEmailSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitcontactemailsetmessage type: Message displayName: BusinessUnitContactEmailSetMessage discriminatorValue: BusinessUnitContactEmailSet diff --git a/api-specs/api/types/message/BusinessUnitCreatedMessage.raml b/api-specs/api/types/message/BusinessUnitCreatedMessage.raml index 5a2c3f59e3..26aaf93487 100644 --- a/api-specs/api/types/message/BusinessUnitCreatedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#business-unit-created type: Message displayName: BusinessUnitCreatedMessage discriminatorValue: BusinessUnitCreated diff --git a/api-specs/api/types/message/BusinessUnitCustomFieldAddedMessage.raml b/api-specs/api/types/message/BusinessUnitCustomFieldAddedMessage.raml index 22d05e4d5e..0d0f22a914 100644 --- a/api-specs/api/types/message/BusinessUnitCustomFieldAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitCustomFieldAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-field-added type: Message displayName: BusinessUnitCustomFieldAddedMessage discriminatorValue: BusinessUnitCustomFieldAdded diff --git a/api-specs/api/types/message/BusinessUnitCustomFieldChangedMessage.raml b/api-specs/api/types/message/BusinessUnitCustomFieldChangedMessage.raml index 3245ea1c6a..e3285cfb5e 100644 --- a/api-specs/api/types/message/BusinessUnitCustomFieldChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitCustomFieldChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-field-changed type: Message displayName: BusinessUnitCustomFieldChangedMessage discriminatorValue: BusinessUnitCustomFieldChanged diff --git a/api-specs/api/types/message/BusinessUnitCustomFieldRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitCustomFieldRemovedMessage.raml index cd7c1a2c08..7c35eb5965 100644 --- a/api-specs/api/types/message/BusinessUnitCustomFieldRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitCustomFieldRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-field-removed type: Message displayName: BusinessUnitCustomFieldRemovedMessage discriminatorValue: BusinessUnitCustomFieldRemoved diff --git a/api-specs/api/types/message/BusinessUnitCustomTypeRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitCustomTypeRemovedMessage.raml index c3215032f4..99493fb5be 100644 --- a/api-specs/api/types/message/BusinessUnitCustomTypeRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitCustomTypeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-type-removed type: Message displayName: BusinessUnitCustomTypeRemovedMessage discriminatorValue: BusinessUnitCustomTypeRemoved diff --git a/api-specs/api/types/message/BusinessUnitCustomTypeSetMessage.raml b/api-specs/api/types/message/BusinessUnitCustomTypeSetMessage.raml index 07a04dc332..50a142648f 100644 --- a/api-specs/api/types/message/BusinessUnitCustomTypeSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitCustomTypeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-type-set type: Message displayName: BusinessUnitCustomTypeSetMessage discriminatorValue: BusinessUnitCustomTypeSet diff --git a/api-specs/api/types/message/BusinessUnitDefaultBillingAddressSetMessage.raml b/api-specs/api/types/message/BusinessUnitDefaultBillingAddressSetMessage.raml index a83dc38a44..b5bc5ade5b 100644 --- a/api-specs/api/types/message/BusinessUnitDefaultBillingAddressSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitDefaultBillingAddressSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitdefaultbillingaddresssetmessage type: Message displayName: BusinessUnitDefaultBillingAddressSetMessage discriminatorValue: BusinessUnitDefaultBillingAddressSet diff --git a/api-specs/api/types/message/BusinessUnitDefaultShippingAddressSetMessage.raml b/api-specs/api/types/message/BusinessUnitDefaultShippingAddressSetMessage.raml index ac73a424c0..3fd21bd1d6 100644 --- a/api-specs/api/types/message/BusinessUnitDefaultShippingAddressSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitDefaultShippingAddressSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitdefaultshippingaddresssetmessage type: Message displayName: BusinessUnitDefaultShippingAddressSetMessage discriminatorValue: BusinessUnitDefaultShippingAddressSet diff --git a/api-specs/api/types/message/BusinessUnitNameChangedMessage.raml b/api-specs/api/types/message/BusinessUnitNameChangedMessage.raml index 672eb428c9..abfc6babef 100644 --- a/api-specs/api/types/message/BusinessUnitNameChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitNameChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitnamechangedmessage type: Message displayName: BusinessUnitNameChangedMessage discriminatorValue: BusinessUnitNameChanged diff --git a/api-specs/api/types/message/BusinessUnitParentChangedMessage.raml b/api-specs/api/types/message/BusinessUnitParentChangedMessage.raml index 7db09c670b..262fe5e536 100644 --- a/api-specs/api/types/message/BusinessUnitParentChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitParentChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitparentchangedmessage type: Message displayName: BusinessUnitParentChangedMessage discriminatorValue: BusinessUnitParentChanged diff --git a/api-specs/api/types/message/BusinessUnitShippingAddressAddedMessage.raml b/api-specs/api/types/message/BusinessUnitShippingAddressAddedMessage.raml index 19cc30bf3b..5a86f5b622 100644 --- a/api-specs/api/types/message/BusinessUnitShippingAddressAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitShippingAddressAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitshippingaddressaddedmessage type: Message displayName: BusinessUnitShippingAddressAddedMessage discriminatorValue: BusinessUnitShippingAddressAdded diff --git a/api-specs/api/types/message/BusinessUnitShippingAddressRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitShippingAddressRemovedMessage.raml index ff66f576c6..f627758625 100644 --- a/api-specs/api/types/message/BusinessUnitShippingAddressRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitShippingAddressRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitshippingaddressremovedmessage type: Message displayName: BusinessUnitShippingAddressRemovedMessage discriminatorValue: BusinessUnitShippingAddressRemoved diff --git a/api-specs/api/types/message/BusinessUnitStatusChangedMessage.raml b/api-specs/api/types/message/BusinessUnitStatusChangedMessage.raml index 5ca76f671e..f59a50c919 100644 --- a/api-specs/api/types/message/BusinessUnitStatusChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitStatusChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstatuschangedmessage type: Message displayName: BusinessUnitStatusChangedMessage discriminatorValue: BusinessUnitStatusChanged diff --git a/api-specs/api/types/message/BusinessUnitStoreAddedMessage.raml b/api-specs/api/types/message/BusinessUnitStoreAddedMessage.raml index 2a0d163cef..8c6aa072c5 100644 --- a/api-specs/api/types/message/BusinessUnitStoreAddedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitStoreAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoreaddedmessage type: Message displayName: BusinessUnitStoreAddedMessage discriminatorValue: BusinessUnitStoreAdded diff --git a/api-specs/api/types/message/BusinessUnitStoreModeChangedMessage.raml b/api-specs/api/types/message/BusinessUnitStoreModeChangedMessage.raml index b6d4b4dce7..d1e8b8e60c 100644 --- a/api-specs/api/types/message/BusinessUnitStoreModeChangedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitStoreModeChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoremodechangedmessage type: Message displayName: BusinessUnitStoreModeChangedMessage discriminatorValue: BusinessUnitStoreModeChanged diff --git a/api-specs/api/types/message/BusinessUnitStoreRemovedMessage.raml b/api-specs/api/types/message/BusinessUnitStoreRemovedMessage.raml index 56983e28ae..60d642f2e7 100644 --- a/api-specs/api/types/message/BusinessUnitStoreRemovedMessage.raml +++ b/api-specs/api/types/message/BusinessUnitStoreRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoreremovedmessage type: Message displayName: BusinessUnitStoreRemovedMessage discriminatorValue: BusinessUnitStoreRemoved diff --git a/api-specs/api/types/message/BusinessUnitStoresSetMessage.raml b/api-specs/api/types/message/BusinessUnitStoresSetMessage.raml index df515d402c..f5d49a947e 100644 --- a/api-specs/api/types/message/BusinessUnitStoresSetMessage.raml +++ b/api-specs/api/types/message/BusinessUnitStoresSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoressetmessage type: Message displayName: BusinessUnitStoresSetMessage discriminatorValue: BusinessUnitStoresSet diff --git a/api-specs/api/types/message/CartDiscountCreatedMessage.raml b/api-specs/api/types/message/CartDiscountCreatedMessage.raml index 5ddadf31fa..bd2b432a04 100644 --- a/api-specs/api/types/message/CartDiscountCreatedMessage.raml +++ b/api-specs/api/types/message/CartDiscountCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-created type: Message displayName: CartDiscountCreatedMessage discriminatorValue: CartDiscountCreated diff --git a/api-specs/api/types/message/CartDiscountDeletedMessage.raml b/api-specs/api/types/message/CartDiscountDeletedMessage.raml index 4ea46e6c9f..5fc5fc40fd 100644 --- a/api-specs/api/types/message/CartDiscountDeletedMessage.raml +++ b/api-specs/api/types/message/CartDiscountDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-deleted type: Message displayName: CartDiscountDeletedMessage discriminatorValue: CartDiscountDeleted diff --git a/api-specs/api/types/message/CartDiscountStoreAddedMessage.raml b/api-specs/api/types/message/CartDiscountStoreAddedMessage.raml index beca4e382d..e6f5d37fc2 100644 --- a/api-specs/api/types/message/CartDiscountStoreAddedMessage.raml +++ b/api-specs/api/types/message/CartDiscountStoreAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-store-added type: Message displayName: CartDiscountStoreAddedMessage discriminatorValue: CartDiscountStoreAdded diff --git a/api-specs/api/types/message/CartDiscountStoreRemovedMessage.raml b/api-specs/api/types/message/CartDiscountStoreRemovedMessage.raml index e43f6027c9..ee7d7ce56e 100644 --- a/api-specs/api/types/message/CartDiscountStoreRemovedMessage.raml +++ b/api-specs/api/types/message/CartDiscountStoreRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-store-removed type: Message displayName: CartDiscountStoreRemovedMessage discriminatorValue: CartDiscountStoreRemoved diff --git a/api-specs/api/types/message/CartDiscountStoresSetMessage.raml b/api-specs/api/types/message/CartDiscountStoresSetMessage.raml index 06196731ed..83b88406d7 100644 --- a/api-specs/api/types/message/CartDiscountStoresSetMessage.raml +++ b/api-specs/api/types/message/CartDiscountStoresSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-stores-set type: Message displayName: CartDiscountStoresSetMessage discriminatorValue: CartDiscountStoresSet diff --git a/api-specs/api/types/message/CategoryCreatedMessage.raml b/api-specs/api/types/message/CategoryCreatedMessage.raml index c1d8104845..a587183f81 100644 --- a/api-specs/api/types/message/CategoryCreatedMessage.raml +++ b/api-specs/api/types/message/CategoryCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#category-created type: Message displayName: CategoryCreatedMessage discriminatorValue: CategoryCreated diff --git a/api-specs/api/types/message/CategorySlugChangedMessage.raml b/api-specs/api/types/message/CategorySlugChangedMessage.raml index 40ef6b468c..5379bde99f 100644 --- a/api-specs/api/types/message/CategorySlugChangedMessage.raml +++ b/api-specs/api/types/message/CategorySlugChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#category-slug-changed type: Message displayName: CategorySlugChangedMessage discriminatorValue: CategorySlugChanged diff --git a/api-specs/api/types/message/CustomLineItemStateTransitionMessage.raml b/api-specs/api/types/message/CustomLineItemStateTransitionMessage.raml index 706788dda3..8d50ede57f 100644 --- a/api-specs/api/types/message/CustomLineItemStateTransitionMessage.raml +++ b/api-specs/api/types/message/CustomLineItemStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#custom-line-item-state-transition type: OrderMessage displayName: CustomLineItemStateTransitionMessage discriminatorValue: CustomLineItemStateTransition @@ -18,7 +17,7 @@ properties: transitionDate: type: datetime description: | - Date and time (UTC) when the transition of the [Custom Line Item](ctp:api:type:CustomLineItem) [State](ctp:api:type:State) was performed. + Date and time (UTC) the transition of the [Custom Line Item](ctp:api:type:CustomLineItem) [State](ctp:api:type:State) was performed. quantity: type: number format: int64 diff --git a/api-specs/api/types/message/CustomerAddressAddedMessage.raml b/api-specs/api/types/message/CustomerAddressAddedMessage.raml index d0631bb54a..447cc31da7 100644 --- a/api-specs/api/types/message/CustomerAddressAddedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-address-added type: Message displayName: CustomerAddressAddedMessage discriminatorValue: CustomerAddressAdded diff --git a/api-specs/api/types/message/CustomerAddressChangedMessage.raml b/api-specs/api/types/message/CustomerAddressChangedMessage.raml index 8fe1a827f6..56214b1294 100644 --- a/api-specs/api/types/message/CustomerAddressChangedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-address-changed type: Message displayName: CustomerAddressChangedMessage discriminatorValue: CustomerAddressChanged diff --git a/api-specs/api/types/message/CustomerAddressCustomFieldAddedMessage.raml b/api-specs/api/types/message/CustomerAddressCustomFieldAddedMessage.raml index b61f8425b3..f386550115 100644 --- a/api-specs/api/types/message/CustomerAddressCustomFieldAddedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressCustomFieldAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-field-added type: Message displayName: CustomerAddressCustomFieldAddedMessage discriminatorValue: CustomerAddressCustomFieldAdded diff --git a/api-specs/api/types/message/CustomerAddressCustomFieldChangedMessage.raml b/api-specs/api/types/message/CustomerAddressCustomFieldChangedMessage.raml index 93d241c44a..9f8e661b64 100644 --- a/api-specs/api/types/message/CustomerAddressCustomFieldChangedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressCustomFieldChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-field-changed type: Message displayName: CustomerAddressCustomFieldChangedMessage discriminatorValue: CustomerAddressCustomFieldChanged diff --git a/api-specs/api/types/message/CustomerAddressCustomFieldRemovedMessage.raml b/api-specs/api/types/message/CustomerAddressCustomFieldRemovedMessage.raml index 05b48911cd..008ad307af 100644 --- a/api-specs/api/types/message/CustomerAddressCustomFieldRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressCustomFieldRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-field-removed type: Message displayName: CustomerAddressCustomFieldRemovedMessage discriminatorValue: CustomerAddressCustomFieldRemoved diff --git a/api-specs/api/types/message/CustomerAddressCustomTypeRemovedMessage.raml b/api-specs/api/types/message/CustomerAddressCustomTypeRemovedMessage.raml index 555631e1f3..836e52e3dc 100644 --- a/api-specs/api/types/message/CustomerAddressCustomTypeRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressCustomTypeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-type-removed type: Message displayName: CustomerAddressCustomTypeRemovedMessage discriminatorValue: CustomerAddressCustomTypeRemoved diff --git a/api-specs/api/types/message/CustomerAddressCustomTypeSetMessage.raml b/api-specs/api/types/message/CustomerAddressCustomTypeSetMessage.raml index 76ce4ea826..cb25cdb202 100644 --- a/api-specs/api/types/message/CustomerAddressCustomTypeSetMessage.raml +++ b/api-specs/api/types/message/CustomerAddressCustomTypeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-type-set type: Message displayName: CustomerAddressCustomTypeSetMessage discriminatorValue: CustomerAddressCustomTypeSet diff --git a/api-specs/api/types/message/CustomerAddressRemovedMessage.raml b/api-specs/api/types/message/CustomerAddressRemovedMessage.raml index 5caba5f064..262167d5b5 100644 --- a/api-specs/api/types/message/CustomerAddressRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerAddressRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-address-removed type: Message displayName: CustomerAddressRemovedMessage discriminatorValue: CustomerAddressRemoved diff --git a/api-specs/api/types/message/CustomerCompanyNameSetMessage.raml b/api-specs/api/types/message/CustomerCompanyNameSetMessage.raml index ca06e8483c..b2664511c0 100644 --- a/api-specs/api/types/message/CustomerCompanyNameSetMessage.raml +++ b/api-specs/api/types/message/CustomerCompanyNameSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-company-name-set type: Message displayName: CustomerCompanyNameSetMessage discriminatorValue: CustomerCompanyNameSet diff --git a/api-specs/api/types/message/CustomerCreatedMessage.raml b/api-specs/api/types/message/CustomerCreatedMessage.raml index c381526a01..bba0e4338c 100644 --- a/api-specs/api/types/message/CustomerCreatedMessage.raml +++ b/api-specs/api/types/message/CustomerCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-created type: Message displayName: CustomerCreatedMessage discriminatorValue: CustomerCreated diff --git a/api-specs/api/types/message/CustomerCustomFieldAddedMessage.raml b/api-specs/api/types/message/CustomerCustomFieldAddedMessage.raml index 59b8fa7dad..e50738bf34 100644 --- a/api-specs/api/types/message/CustomerCustomFieldAddedMessage.raml +++ b/api-specs/api/types/message/CustomerCustomFieldAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-field-added type: Message displayName: CustomerCustomFieldAddedMessage discriminatorValue: CustomerCustomFieldAdded diff --git a/api-specs/api/types/message/CustomerCustomFieldChangedMessage.raml b/api-specs/api/types/message/CustomerCustomFieldChangedMessage.raml index 2bf2370a7e..99751b3248 100644 --- a/api-specs/api/types/message/CustomerCustomFieldChangedMessage.raml +++ b/api-specs/api/types/message/CustomerCustomFieldChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-field-changed type: Message displayName: CustomerCustomFieldChangedMessage discriminatorValue: CustomerCustomFieldChanged diff --git a/api-specs/api/types/message/CustomerCustomFieldRemovedMessage.raml b/api-specs/api/types/message/CustomerCustomFieldRemovedMessage.raml index 9c2e0a8735..3bf4032ae1 100644 --- a/api-specs/api/types/message/CustomerCustomFieldRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerCustomFieldRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-field-removed type: Message displayName: CustomerCustomFieldRemovedMessage discriminatorValue: CustomerCustomFieldRemoved diff --git a/api-specs/api/types/message/CustomerCustomTypeRemovedMessage.raml b/api-specs/api/types/message/CustomerCustomTypeRemovedMessage.raml index b4d100537b..523981ab03 100644 --- a/api-specs/api/types/message/CustomerCustomTypeRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerCustomTypeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-type-removed type: Message displayName: CustomerCustomTypeRemovedMessage discriminatorValue: CustomerCustomTypeRemoved diff --git a/api-specs/api/types/message/CustomerCustomTypeSetMessage.raml b/api-specs/api/types/message/CustomerCustomTypeSetMessage.raml index 251c31d751..0f57032755 100644 --- a/api-specs/api/types/message/CustomerCustomTypeSetMessage.raml +++ b/api-specs/api/types/message/CustomerCustomTypeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-type-set type: Message displayName: CustomerCustomTypeSetMessage discriminatorValue: CustomerCustomTypeSet diff --git a/api-specs/api/types/message/CustomerDateOfBirthSetMessage.raml b/api-specs/api/types/message/CustomerDateOfBirthSetMessage.raml index 563d49bc23..e2dd62dcf4 100644 --- a/api-specs/api/types/message/CustomerDateOfBirthSetMessage.raml +++ b/api-specs/api/types/message/CustomerDateOfBirthSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-date-of-birth-set type: Message displayName: CustomerDateOfBirthSetMessage discriminatorValue: CustomerDateOfBirthSet diff --git a/api-specs/api/types/message/CustomerDeletedMessage.raml b/api-specs/api/types/message/CustomerDeletedMessage.raml index e582a43d0d..6fbbd7050d 100644 --- a/api-specs/api/types/message/CustomerDeletedMessage.raml +++ b/api-specs/api/types/message/CustomerDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-deleted type: Message displayName: CustomerDeletedMessage discriminatorValue: CustomerDeleted diff --git a/api-specs/api/types/message/CustomerEmailChangedMessage.raml b/api-specs/api/types/message/CustomerEmailChangedMessage.raml index 296d30e2c7..c68f4f6299 100644 --- a/api-specs/api/types/message/CustomerEmailChangedMessage.raml +++ b/api-specs/api/types/message/CustomerEmailChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-email-changed type: Message displayName: CustomerEmailChangedMessage discriminatorValue: CustomerEmailChanged diff --git a/api-specs/api/types/message/CustomerEmailTokenCreatedMessage.raml b/api-specs/api/types/message/CustomerEmailTokenCreatedMessage.raml index 9bb819e00e..3877b9e517 100644 --- a/api-specs/api/types/message/CustomerEmailTokenCreatedMessage.raml +++ b/api-specs/api/types/message/CustomerEmailTokenCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customeremailtoken-created type: Message displayName: CustomerEmailTokenCreatedMessage discriminatorValue: CustomerEmailTokenCreated diff --git a/api-specs/api/types/message/CustomerEmailVerifiedMessage.raml b/api-specs/api/types/message/CustomerEmailVerifiedMessage.raml index 215b22a4f0..1643beb337 100644 --- a/api-specs/api/types/message/CustomerEmailVerifiedMessage.raml +++ b/api-specs/api/types/message/CustomerEmailVerifiedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-email-verified type: Message displayName: CustomerEmailVerifiedMessage discriminatorValue: CustomerEmailVerified diff --git a/api-specs/api/types/message/CustomerFirstNameSetMessage.raml b/api-specs/api/types/message/CustomerFirstNameSetMessage.raml index 5ff8c180b9..9a7cc3c65e 100644 --- a/api-specs/api/types/message/CustomerFirstNameSetMessage.raml +++ b/api-specs/api/types/message/CustomerFirstNameSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-first-name-set type: Message displayName: CustomerFirstNameSetMessage discriminatorValue: CustomerFirstNameSet diff --git a/api-specs/api/types/message/CustomerGroupCustomFieldAddedMessage.raml b/api-specs/api/types/message/CustomerGroupCustomFieldAddedMessage.raml index b49ce41d09..e2f253f6c4 100644 --- a/api-specs/api/types/message/CustomerGroupCustomFieldAddedMessage.raml +++ b/api-specs/api/types/message/CustomerGroupCustomFieldAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-field-added type: Message displayName: CustomerGroupCustomFieldAddedMessage discriminatorValue: CustomerGroupCustomFieldAdded diff --git a/api-specs/api/types/message/CustomerGroupCustomFieldChangedMessage.raml b/api-specs/api/types/message/CustomerGroupCustomFieldChangedMessage.raml index 0c60d2bb88..fef5acaf97 100644 --- a/api-specs/api/types/message/CustomerGroupCustomFieldChangedMessage.raml +++ b/api-specs/api/types/message/CustomerGroupCustomFieldChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-field-changed type: Message displayName: CustomerGroupCustomFieldChangedMessage discriminatorValue: CustomerGroupCustomFieldChanged diff --git a/api-specs/api/types/message/CustomerGroupCustomFieldRemovedMessage.raml b/api-specs/api/types/message/CustomerGroupCustomFieldRemovedMessage.raml index 374cb32588..15d6bb4870 100644 --- a/api-specs/api/types/message/CustomerGroupCustomFieldRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerGroupCustomFieldRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-field-removed type: Message displayName: CustomerGroupCustomFieldRemovedMessage discriminatorValue: CustomerGroupCustomFieldRemoved diff --git a/api-specs/api/types/message/CustomerGroupCustomTypeRemovedMessage.raml b/api-specs/api/types/message/CustomerGroupCustomTypeRemovedMessage.raml index cd5d79ec24..5315c75f68 100644 --- a/api-specs/api/types/message/CustomerGroupCustomTypeRemovedMessage.raml +++ b/api-specs/api/types/message/CustomerGroupCustomTypeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-type-removed type: Message displayName: CustomerGroupCustomTypeRemovedMessage discriminatorValue: CustomerGroupCustomTypeRemoved diff --git a/api-specs/api/types/message/CustomerGroupCustomTypeSetMessage.raml b/api-specs/api/types/message/CustomerGroupCustomTypeSetMessage.raml index e66673fc52..e176599608 100644 --- a/api-specs/api/types/message/CustomerGroupCustomTypeSetMessage.raml +++ b/api-specs/api/types/message/CustomerGroupCustomTypeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-type-set type: Message displayName: CustomerGroupCustomTypeSetMessage discriminatorValue: CustomerGroupCustomTypeSet diff --git a/api-specs/api/types/message/CustomerGroupSetMessage.raml b/api-specs/api/types/message/CustomerGroupSetMessage.raml index f0c0bf3e7f..2891bced94 100644 --- a/api-specs/api/types/message/CustomerGroupSetMessage.raml +++ b/api-specs/api/types/message/CustomerGroupSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-group-set type: Message displayName: CustomerGroupSetMessage discriminatorValue: CustomerGroupSet diff --git a/api-specs/api/types/message/CustomerLastNameSetMessage.raml b/api-specs/api/types/message/CustomerLastNameSetMessage.raml index 92e7618fe7..1d8761f23a 100644 --- a/api-specs/api/types/message/CustomerLastNameSetMessage.raml +++ b/api-specs/api/types/message/CustomerLastNameSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-last-name-set type: Message displayName: CustomerLastNameSetMessage discriminatorValue: CustomerLastNameSet diff --git a/api-specs/api/types/message/CustomerPasswordTokenCreatedMessage.raml b/api-specs/api/types/message/CustomerPasswordTokenCreatedMessage.raml index c64939cfc8..fbda00ecfb 100644 --- a/api-specs/api/types/message/CustomerPasswordTokenCreatedMessage.raml +++ b/api-specs/api/types/message/CustomerPasswordTokenCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customerpasswordtoken-created type: Message displayName: CustomerPasswordTokenCreatedMessage discriminatorValue: CustomerPasswordTokenCreated diff --git a/api-specs/api/types/message/CustomerPasswordUpdatedMessage.raml b/api-specs/api/types/message/CustomerPasswordUpdatedMessage.raml index 20eeb6ceff..97f78aca77 100644 --- a/api-specs/api/types/message/CustomerPasswordUpdatedMessage.raml +++ b/api-specs/api/types/message/CustomerPasswordUpdatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-password-updated type: Message displayName: CustomerPasswordUpdatedMessage discriminatorValue: CustomerPasswordUpdated diff --git a/api-specs/api/types/message/CustomerTitleSetMessage.raml b/api-specs/api/types/message/CustomerTitleSetMessage.raml index e44e8d3be5..b4170af2c5 100644 --- a/api-specs/api/types/message/CustomerTitleSetMessage.raml +++ b/api-specs/api/types/message/CustomerTitleSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-title-set type: Message displayName: CustomerTitleSetMessage discriminatorValue: CustomerTitleSet diff --git a/api-specs/api/types/message/DeliveryAddedMessage.raml b/api-specs/api/types/message/DeliveryAddedMessage.raml index c6bf557397..dd1033b622 100644 --- a/api-specs/api/types/message/DeliveryAddedMessage.raml +++ b/api-specs/api/types/message/DeliveryAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-added type: OrderMessage displayName: DeliveryAddedMessage discriminatorValue: DeliveryAdded diff --git a/api-specs/api/types/message/DeliveryAddressSetMessage.raml b/api-specs/api/types/message/DeliveryAddressSetMessage.raml index be7a53b880..f6dcafb920 100644 --- a/api-specs/api/types/message/DeliveryAddressSetMessage.raml +++ b/api-specs/api/types/message/DeliveryAddressSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-address-set type: OrderMessage displayName: DeliveryAddressSetMessage discriminatorValue: DeliveryAddressSet diff --git a/api-specs/api/types/message/DeliveryItemsUpdatedMessage.raml b/api-specs/api/types/message/DeliveryItemsUpdatedMessage.raml index f42139368c..71ed804995 100644 --- a/api-specs/api/types/message/DeliveryItemsUpdatedMessage.raml +++ b/api-specs/api/types/message/DeliveryItemsUpdatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-items-updated type: OrderMessage displayName: DeliveryItemsUpdatedMessage discriminatorValue: DeliveryItemsUpdated diff --git a/api-specs/api/types/message/DeliveryRemovedMessage.raml b/api-specs/api/types/message/DeliveryRemovedMessage.raml index c12658a2fd..b65c558a7c 100644 --- a/api-specs/api/types/message/DeliveryRemovedMessage.raml +++ b/api-specs/api/types/message/DeliveryRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-removed type: OrderMessage displayName: DeliveryRemovedMessage discriminatorValue: DeliveryRemoved diff --git a/api-specs/api/types/message/DiscountCodeCreatedMessage.raml b/api-specs/api/types/message/DiscountCodeCreatedMessage.raml new file mode 100644 index 0000000000..64555994a8 --- /dev/null +++ b/api-specs/api/types/message/DiscountCodeCreatedMessage.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +displayName: DiscountCodeCreatedMessage +discriminatorValue: DiscountCodeCreated +description: | + Generated after a successful [Create DiscountCode](ctp:api:endpoint:/{projectKey}/discount-codes:POST) request. +properties: + discountCode: + type: DiscountCode + description: | + The [Discount Code](ctp:api:type:DiscountCode) that was created. diff --git a/api-specs/api/types/message/DiscountCodeDeletedMessage.raml b/api-specs/api/types/message/DiscountCodeDeletedMessage.raml new file mode 100644 index 0000000000..ece653ac1c --- /dev/null +++ b/api-specs/api/types/message/DiscountCodeDeletedMessage.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +displayName: DiscountCodeDeletedMessage +discriminatorValue: DiscountCodeDeleted +description: | + Generated after a successful [Delete DiscountCode](ctp:api:endpoint:/{projectKey}/discount-codes/{id}:DELETE) request. +properties: diff --git a/api-specs/api/types/message/DiscountCodeKeySetMessage.raml b/api-specs/api/types/message/DiscountCodeKeySetMessage.raml new file mode 100644 index 0000000000..8da2cd50d0 --- /dev/null +++ b/api-specs/api/types/message/DiscountCodeKeySetMessage.raml @@ -0,0 +1,22 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +displayName: DiscountCodeKeySetMessage +discriminatorValue: DiscountCodeKeySet +description: | + Generated after a successful [Set Key](ctp:api:type:DiscountCodeSetKeyAction) update action. +properties: + key?: + type: string + description: | + `key` value of the [Discount Code](ctp:api:type:DiscountCode) after the [Set Key](ctp:api:type:DiscountCodeSetKeyAction) update action. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 + oldKey?: + type: string + description: | + `key` value of the [Discount Code](ctp:api:type:DiscountCode) before the [Set Key](ctp:api:type:DiscountCodeSetKeyAction) update action. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 diff --git a/api-specs/api/types/message/InventoryEntryCreatedMessage.raml b/api-specs/api/types/message/InventoryEntryCreatedMessage.raml index fbd0527265..ce6a98efdd 100644 --- a/api-specs/api/types/message/InventoryEntryCreatedMessage.raml +++ b/api-specs/api/types/message/InventoryEntryCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#inventoryentry-created type: Message displayName: InventoryEntryCreatedMessage discriminatorValue: InventoryEntryCreated diff --git a/api-specs/api/types/message/InventoryEntryDeletedMessage.raml b/api-specs/api/types/message/InventoryEntryDeletedMessage.raml index 03636e8149..66b4544f10 100644 --- a/api-specs/api/types/message/InventoryEntryDeletedMessage.raml +++ b/api-specs/api/types/message/InventoryEntryDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#inventoryentry-deleted type: Message displayName: InventoryEntryDeletedMessage discriminatorValue: InventoryEntryDeleted diff --git a/api-specs/api/types/message/InventoryEntryQuantitySetMessage.raml b/api-specs/api/types/message/InventoryEntryQuantitySetMessage.raml index be097ccf62..bc88f2f726 100644 --- a/api-specs/api/types/message/InventoryEntryQuantitySetMessage.raml +++ b/api-specs/api/types/message/InventoryEntryQuantitySetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#inventoryentry-quantity-set type: Message displayName: InventoryEntryQuantitySetMessage discriminatorValue: InventoryEntryQuantitySet diff --git a/api-specs/api/types/message/LineItemStateTransitionMessage.raml b/api-specs/api/types/message/LineItemStateTransitionMessage.raml index 45c29d2801..de5c7d1cf2 100644 --- a/api-specs/api/types/message/LineItemStateTransitionMessage.raml +++ b/api-specs/api/types/message/LineItemStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#line-item-state-transition type: OrderMessage displayName: LineItemStateTransitionMessage discriminatorValue: LineItemStateTransition @@ -18,7 +17,7 @@ properties: transitionDate: type: datetime description: | - Date and time (UTC) when the transition of the [Line Item](ctp:api:type:LineItem) [State](ctp:api:type:State) was performed. + Date and time (UTC) the transition of the [Line Item](ctp:api:type:LineItem) [State](ctp:api:type:State) was performed. quantity: type: number format: int64 diff --git a/api-specs/api/types/message/Message.raml b/api-specs/api/types/message/Message.raml index e7194a9710..802f3124e3 100644 --- a/api-specs/api/types/message/Message.raml +++ b/api-specs/api/types/message/Message.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#message type: BaseResource displayName: Message discriminator: type @@ -25,12 +24,12 @@ properties: type: LastModifiedBy (beta): true description: | - Value of `createdBy`. + IDs and references that last modified the Message. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Message. sequenceNumber: type: number format: int64 diff --git a/api-specs/api/types/message/OrderBillingAddressSetMessage.raml b/api-specs/api/types/message/OrderBillingAddressSetMessage.raml index 6f4de83a0f..3770c7b865 100644 --- a/api-specs/api/types/message/OrderBillingAddressSetMessage.raml +++ b/api-specs/api/types/message/OrderBillingAddressSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-billing-address-set type: OrderMessage displayName: OrderBillingAddressSetMessage discriminatorValue: OrderBillingAddressSet diff --git a/api-specs/api/types/message/OrderCreatedMessage.raml b/api-specs/api/types/message/OrderCreatedMessage.raml index 24100b6b85..5eaf8723fd 100644 --- a/api-specs/api/types/message/OrderCreatedMessage.raml +++ b/api-specs/api/types/message/OrderCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-created type: OrderMessage displayName: OrderCreatedMessage discriminatorValue: OrderCreated diff --git a/api-specs/api/types/message/OrderCustomFieldAddedMessage.raml b/api-specs/api/types/message/OrderCustomFieldAddedMessage.raml index e366b6ded5..11b0500e99 100644 --- a/api-specs/api/types/message/OrderCustomFieldAddedMessage.raml +++ b/api-specs/api/types/message/OrderCustomFieldAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-custom-field-added type: OrderMessage displayName: OrderCustomFieldAddedMessage discriminatorValue: OrderCustomFieldAdded diff --git a/api-specs/api/types/message/OrderCustomFieldChangedMessage.raml b/api-specs/api/types/message/OrderCustomFieldChangedMessage.raml index f5f11be500..acd200fb50 100644 --- a/api-specs/api/types/message/OrderCustomFieldChangedMessage.raml +++ b/api-specs/api/types/message/OrderCustomFieldChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-custom-field-changed type: OrderMessage displayName: OrderCustomFieldChangedMessage discriminatorValue: OrderCustomFieldChanged diff --git a/api-specs/api/types/message/OrderCustomFieldRemovedMessage.raml b/api-specs/api/types/message/OrderCustomFieldRemovedMessage.raml index 17bbfe66ce..e4cdf0f913 100644 --- a/api-specs/api/types/message/OrderCustomFieldRemovedMessage.raml +++ b/api-specs/api/types/message/OrderCustomFieldRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-custom-field-removed type: OrderMessage displayName: OrderCustomFieldRemovedMessage discriminatorValue: OrderCustomFieldRemoved diff --git a/api-specs/api/types/message/OrderCustomLineItemAddedMessage.raml b/api-specs/api/types/message/OrderCustomLineItemAddedMessage.raml index 6d37e27724..43e8cd0016 100644 --- a/api-specs/api/types/message/OrderCustomLineItemAddedMessage.raml +++ b/api-specs/api/types/message/OrderCustomLineItemAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-added type: OrderMessage displayName: OrderCustomLineItemAddedMessage discriminatorValue: OrderCustomLineItemAdded diff --git a/api-specs/api/types/message/OrderCustomLineItemDiscountSetMessage.raml b/api-specs/api/types/message/OrderCustomLineItemDiscountSetMessage.raml index a5e193e1ad..e79f81cf53 100644 --- a/api-specs/api/types/message/OrderCustomLineItemDiscountSetMessage.raml +++ b/api-specs/api/types/message/OrderCustomLineItemDiscountSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-discount-set type: OrderMessage displayName: OrderCustomLineItemDiscountSetMessage discriminatorValue: OrderCustomLineItemDiscountSet diff --git a/api-specs/api/types/message/OrderCustomLineItemQuantityChangedMessage.raml b/api-specs/api/types/message/OrderCustomLineItemQuantityChangedMessage.raml index b95934c595..c0b499f4b5 100644 --- a/api-specs/api/types/message/OrderCustomLineItemQuantityChangedMessage.raml +++ b/api-specs/api/types/message/OrderCustomLineItemQuantityChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-quantity-changed type: OrderMessage displayName: OrderCustomLineItemQuantityChangedMessage discriminatorValue: OrderCustomLineItemQuantityChanged diff --git a/api-specs/api/types/message/OrderCustomLineItemRemovedMessage.raml b/api-specs/api/types/message/OrderCustomLineItemRemovedMessage.raml index 15da6dd6a4..bcf2bb38b5 100644 --- a/api-specs/api/types/message/OrderCustomLineItemRemovedMessage.raml +++ b/api-specs/api/types/message/OrderCustomLineItemRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-removed type: OrderMessage displayName: OrderCustomLineItemRemovedMessage discriminatorValue: OrderCustomLineItemRemoved diff --git a/api-specs/api/types/message/OrderCustomTypeRemovedMessage.raml b/api-specs/api/types/message/OrderCustomTypeRemovedMessage.raml index 197515d869..3f29c755f1 100644 --- a/api-specs/api/types/message/OrderCustomTypeRemovedMessage.raml +++ b/api-specs/api/types/message/OrderCustomTypeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-type-removed type: OrderMessage displayName: OrderCustomTypeRemovedMessage discriminatorValue: OrderCustomTypeRemoved diff --git a/api-specs/api/types/message/OrderCustomTypeSetMessage.raml b/api-specs/api/types/message/OrderCustomTypeSetMessage.raml index acd09d3d09..18f29bc53d 100644 --- a/api-specs/api/types/message/OrderCustomTypeSetMessage.raml +++ b/api-specs/api/types/message/OrderCustomTypeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-type-set type: OrderMessage displayName: OrderCustomTypeSetMessage discriminatorValue: OrderCustomTypeSet diff --git a/api-specs/api/types/message/OrderCustomerEmailSetMessage.raml b/api-specs/api/types/message/OrderCustomerEmailSetMessage.raml index c0494ae8f2..7f9af309cc 100644 --- a/api-specs/api/types/message/OrderCustomerEmailSetMessage.raml +++ b/api-specs/api/types/message/OrderCustomerEmailSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-customer-email-set type: OrderMessage displayName: OrderCustomerEmailSetMessage discriminatorValue: OrderCustomerEmailSet diff --git a/api-specs/api/types/message/OrderCustomerGroupSetMessage.raml b/api-specs/api/types/message/OrderCustomerGroupSetMessage.raml index 3a66761a17..9a50d91cf0 100644 --- a/api-specs/api/types/message/OrderCustomerGroupSetMessage.raml +++ b/api-specs/api/types/message/OrderCustomerGroupSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-customer-group-set type: OrderMessage displayName: OrderCustomerGroupSetMessage discriminatorValue: OrderCustomerGroupSet diff --git a/api-specs/api/types/message/OrderCustomerSetMessage.raml b/api-specs/api/types/message/OrderCustomerSetMessage.raml index c75cae5c81..0be834176c 100644 --- a/api-specs/api/types/message/OrderCustomerSetMessage.raml +++ b/api-specs/api/types/message/OrderCustomerSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-customer-email-set type: OrderMessage displayName: OrderCustomerSetMessage discriminatorValue: OrderCustomerSet diff --git a/api-specs/api/types/message/OrderDeletedMessage.raml b/api-specs/api/types/message/OrderDeletedMessage.raml index 44f73516eb..246fc65e9f 100644 --- a/api-specs/api/types/message/OrderDeletedMessage.raml +++ b/api-specs/api/types/message/OrderDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-deleted type: OrderMessage displayName: OrderDeletedMessage discriminatorValue: OrderDeleted diff --git a/api-specs/api/types/message/OrderDiscountCodeAddedMessage.raml b/api-specs/api/types/message/OrderDiscountCodeAddedMessage.raml index 5058a2a95c..c63441cfca 100644 --- a/api-specs/api/types/message/OrderDiscountCodeAddedMessage.raml +++ b/api-specs/api/types/message/OrderDiscountCodeAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-discount-code-added type: OrderMessage displayName: OrderDiscountCodeAddedMessage discriminatorValue: OrderDiscountCodeAdded diff --git a/api-specs/api/types/message/OrderDiscountCodeRemovedMessage.raml b/api-specs/api/types/message/OrderDiscountCodeRemovedMessage.raml index 6d31d82a24..b7cb4f6bbb 100644 --- a/api-specs/api/types/message/OrderDiscountCodeRemovedMessage.raml +++ b/api-specs/api/types/message/OrderDiscountCodeRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-discount-code-removed type: OrderMessage displayName: OrderDiscountCodeRemovedMessage discriminatorValue: OrderDiscountCodeRemoved diff --git a/api-specs/api/types/message/OrderDiscountCodeStateSetMessage.raml b/api-specs/api/types/message/OrderDiscountCodeStateSetMessage.raml index 88e0543a3e..11c7c9e729 100644 --- a/api-specs/api/types/message/OrderDiscountCodeStateSetMessage.raml +++ b/api-specs/api/types/message/OrderDiscountCodeStateSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-discount-code-state-set type: OrderMessage displayName: OrderDiscountCodeStateSetMessage discriminatorValue: OrderDiscountCodeStateSet diff --git a/api-specs/api/types/message/OrderEditAppliedMessage.raml b/api-specs/api/types/message/OrderEditAppliedMessage.raml index 9457d673dd..2ff10665bc 100644 --- a/api-specs/api/types/message/OrderEditAppliedMessage.raml +++ b/api-specs/api/types/message/OrderEditAppliedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-created type: OrderMessage displayName: OrderEditAppliedMessage discriminatorValue: OrderEditApplied diff --git a/api-specs/api/types/message/OrderImportedMessage.raml b/api-specs/api/types/message/OrderImportedMessage.raml index c71f5f6b7d..c71aca2257 100644 --- a/api-specs/api/types/message/OrderImportedMessage.raml +++ b/api-specs/api/types/message/OrderImportedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-imported type: OrderMessage displayName: OrderImportedMessage discriminatorValue: OrderImported diff --git a/api-specs/api/types/message/OrderLineItemAddedMessage.raml b/api-specs/api/types/message/OrderLineItemAddedMessage.raml index 5667b096e8..905e8763a7 100644 --- a/api-specs/api/types/message/OrderLineItemAddedMessage.raml +++ b/api-specs/api/types/message/OrderLineItemAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-line-item-added type: OrderMessage displayName: OrderLineItemAddedMessage discriminatorValue: OrderLineItemAdded diff --git a/api-specs/api/types/message/OrderLineItemDiscountSetMessage.raml b/api-specs/api/types/message/OrderLineItemDiscountSetMessage.raml index adf4144343..6e0bb9e1ea 100644 --- a/api-specs/api/types/message/OrderLineItemDiscountSetMessage.raml +++ b/api-specs/api/types/message/OrderLineItemDiscountSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-line-item-discount-set type: OrderMessage displayName: OrderLineItemDiscountSetMessage discriminatorValue: OrderLineItemDiscountSet @@ -30,4 +29,5 @@ properties: taxedPricePortions: type: MethodTaxedPrice[] description: | - Taxed price of the Shipping Methods in a Cart with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + Total taxed prices based on the quantity of Line Item assigned to each [Shipping Method](ctp:api:type:ShippingMethod). Only applicable for Carts with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + Automatically set after `perMethodTaxRate` is set. diff --git a/api-specs/api/types/message/OrderLineItemDistributionChannelSetMessage.raml b/api-specs/api/types/message/OrderLineItemDistributionChannelSetMessage.raml index c6b8d736f6..78fffe63d4 100644 --- a/api-specs/api/types/message/OrderLineItemDistributionChannelSetMessage.raml +++ b/api-specs/api/types/message/OrderLineItemDistributionChannelSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#orderlineitemdistributionchannelset type: OrderMessage displayName: OrderLineItemDistributionChannelSetMessage discriminatorValue: OrderLineItemDistributionChannelSet diff --git a/api-specs/api/types/message/OrderLineItemRemovedMessage.raml b/api-specs/api/types/message/OrderLineItemRemovedMessage.raml index 647d8ae7f9..750fe63f47 100644 --- a/api-specs/api/types/message/OrderLineItemRemovedMessage.raml +++ b/api-specs/api/types/message/OrderLineItemRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-line-item-removed type: OrderMessage displayName: OrderLineItemRemovedMessage discriminatorValue: OrderLineItemRemoved diff --git a/api-specs/api/types/message/OrderMessage.raml b/api-specs/api/types/message/OrderMessage.raml index b6cea67832..7e1ec97a6a 100644 --- a/api-specs/api/types/message/OrderMessage.raml +++ b/api-specs/api/types/message/OrderMessage.raml @@ -1,5 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-messages type: Message +(ignoreValidators): [PolymorphicSubtypesRule] displayName: OrderMessage diff --git a/api-specs/api/types/message/OrderPaymentAddedMessage.raml b/api-specs/api/types/message/OrderPaymentAddedMessage.raml index 654aa67368..8adf60e39d 100644 --- a/api-specs/api/types/message/OrderPaymentAddedMessage.raml +++ b/api-specs/api/types/message/OrderPaymentAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-payment-added type: Message displayName: OrderPaymentAddedMessage discriminatorValue: OrderPaymentAdded diff --git a/api-specs/api/types/message/OrderPaymentStateChangedMessage.raml b/api-specs/api/types/message/OrderPaymentStateChangedMessage.raml index 7c22fea7bc..a8a3bc32dc 100644 --- a/api-specs/api/types/message/OrderPaymentStateChangedMessage.raml +++ b/api-specs/api/types/message/OrderPaymentStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-payment-state-changed type: OrderMessage displayName: OrderPaymentStateChangedMessage discriminatorValue: OrderPaymentStateChanged diff --git a/api-specs/api/types/message/OrderPurchaseOrderNumberSetMessage.raml b/api-specs/api/types/message/OrderPurchaseOrderNumberSetMessage.raml index 93b14178db..6c04cf6703 100644 --- a/api-specs/api/types/message/OrderPurchaseOrderNumberSetMessage.raml +++ b/api-specs/api/types/message/OrderPurchaseOrderNumberSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-purchase-order-number-set type: OrderMessage displayName: OrderPurchaseOrderNumberSetMessage discriminatorValue: OrderPurchaseOrderNumberSet diff --git a/api-specs/api/types/message/OrderReturnShipmentStateChangedMessage.raml b/api-specs/api/types/message/OrderReturnShipmentStateChangedMessage.raml index 507da1a627..58a760973d 100644 --- a/api-specs/api/types/message/OrderReturnShipmentStateChangedMessage.raml +++ b/api-specs/api/types/message/OrderReturnShipmentStateChangedMessage.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-return-shipment-state-changed type: OrderMessage displayName: OrderReturnShipmentStateChangedMessage discriminatorValue: OrderReturnShipmentStateChanged description: | - Generated after a successful [Set ReturnShipmentState](ctp:api:type:OrderSetReturnShipmentStateAction) update action. + Generated after a successful [Set ReturnShipmentState](ctp:api:type:OrderSetReturnShipmentStateAction) update action on [Orders](ctp:api:type:Order) and [Order Edits](ctp:api:type:OrderEdit). properties: returnItemId: type: string diff --git a/api-specs/api/types/message/OrderShipmentStateChangedMessage.raml b/api-specs/api/types/message/OrderShipmentStateChangedMessage.raml index b6557f77f1..ad71a8f60b 100644 --- a/api-specs/api/types/message/OrderShipmentStateChangedMessage.raml +++ b/api-specs/api/types/message/OrderShipmentStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipment-state-changed type: OrderMessage displayName: OrderShipmentStateChangedMessage discriminatorValue: OrderShipmentStateChanged @@ -11,7 +10,7 @@ properties: type: ShipmentState description: | [ShipmentState](ctp:api:type:ShipmentState) after the [Change Shipment State](ctp:api:type:OrderChangeShipmentStateAction) update action. - oldShipmentState: + oldShipmentState?: type: ShipmentState description: | [ShipmentState](ctp:api:type:ShipmentState) before the [Change Shipment State](ctp:api:type:OrderChangeShipmentStateAction) update action. diff --git a/api-specs/api/types/message/OrderShippingAddressSetMessage.raml b/api-specs/api/types/message/OrderShippingAddressSetMessage.raml index 5d295c4078..c423ba8cce 100644 --- a/api-specs/api/types/message/OrderShippingAddressSetMessage.raml +++ b/api-specs/api/types/message/OrderShippingAddressSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipping-address-set type: OrderMessage displayName: OrderShippingAddressSetMessage discriminatorValue: OrderShippingAddressSet diff --git a/api-specs/api/types/message/OrderShippingInfoSetMessage.raml b/api-specs/api/types/message/OrderShippingInfoSetMessage.raml index 1698a9de79..f6e793468c 100644 --- a/api-specs/api/types/message/OrderShippingInfoSetMessage.raml +++ b/api-specs/api/types/message/OrderShippingInfoSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipping-info-set type: OrderMessage displayName: OrderShippingInfoSetMessage discriminatorValue: OrderShippingInfoSet diff --git a/api-specs/api/types/message/OrderShippingRateInputSetMessage.raml b/api-specs/api/types/message/OrderShippingRateInputSetMessage.raml index 6eea5f70e1..7e543b41b1 100644 --- a/api-specs/api/types/message/OrderShippingRateInputSetMessage.raml +++ b/api-specs/api/types/message/OrderShippingRateInputSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipping-rate-input-set type: OrderMessage displayName: OrderShippingRateInputSetMessage discriminatorValue: OrderShippingRateInputSet diff --git a/api-specs/api/types/message/OrderStateChangedMessage.raml b/api-specs/api/types/message/OrderStateChangedMessage.raml index f558313106..ebc614933b 100644 --- a/api-specs/api/types/message/OrderStateChangedMessage.raml +++ b/api-specs/api/types/message/OrderStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-state-changed type: OrderMessage displayName: OrderStateChangedMessage discriminatorValue: OrderStateChanged @@ -11,7 +10,7 @@ properties: type: OrderState description: | [OrderState](ctp:api:type:OrderState) after the [Change Order State](ctp:api:type:OrderChangeOrderStateAction) update action. - oldOrderState: + oldOrderState?: type: OrderState description: | [OrderState](ctp:api:type:OrderState) before the [Change Order State](ctp:api:type:OrderChangeOrderStateAction) update action. diff --git a/api-specs/api/types/message/OrderStateTransitionMessage.raml b/api-specs/api/types/message/OrderStateTransitionMessage.raml index 23b02bd0e7..531898ea68 100644 --- a/api-specs/api/types/message/OrderStateTransitionMessage.raml +++ b/api-specs/api/types/message/OrderStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-state-transition type: OrderMessage displayName: OrderStateTransitionMessage discriminatorValue: OrderStateTransition diff --git a/api-specs/api/types/message/OrderStoreSetMessage.raml b/api-specs/api/types/message/OrderStoreSetMessage.raml index 5be362645c..c57920cc92 100644 --- a/api-specs/api/types/message/OrderStoreSetMessage.raml +++ b/api-specs/api/types/message/OrderStoreSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-store-set type: OrderMessage displayName: OrderStoreSetMessage discriminatorValue: OrderStoreSet diff --git a/api-specs/api/types/message/ParcelAddedToDeliveryMessage.raml b/api-specs/api/types/message/ParcelAddedToDeliveryMessage.raml index ed3c101d62..4b6bfe0358 100644 --- a/api-specs/api/types/message/ParcelAddedToDeliveryMessage.raml +++ b/api-specs/api/types/message/ParcelAddedToDeliveryMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-added-to-delivery type: OrderMessage displayName: ParcelAddedToDeliveryMessage discriminatorValue: ParcelAddedToDelivery diff --git a/api-specs/api/types/message/ParcelItemsUpdatedMessage.raml b/api-specs/api/types/message/ParcelItemsUpdatedMessage.raml index 4e9ec8f88f..6f1f5edb45 100644 --- a/api-specs/api/types/message/ParcelItemsUpdatedMessage.raml +++ b/api-specs/api/types/message/ParcelItemsUpdatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-items-updated type: OrderMessage displayName: ParcelItemsUpdatedMessage discriminatorValue: ParcelItemsUpdated diff --git a/api-specs/api/types/message/ParcelMeasurementsUpdatedMessage.raml b/api-specs/api/types/message/ParcelMeasurementsUpdatedMessage.raml index 6464c1cc23..22f7eb6a00 100644 --- a/api-specs/api/types/message/ParcelMeasurementsUpdatedMessage.raml +++ b/api-specs/api/types/message/ParcelMeasurementsUpdatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-measurements-updated type: OrderMessage displayName: ParcelMeasurementsUpdatedMessage discriminatorValue: ParcelMeasurementsUpdated diff --git a/api-specs/api/types/message/ParcelRemovedFromDeliveryMessage.raml b/api-specs/api/types/message/ParcelRemovedFromDeliveryMessage.raml index 8e8b5ebdfb..6709f81ed7 100644 --- a/api-specs/api/types/message/ParcelRemovedFromDeliveryMessage.raml +++ b/api-specs/api/types/message/ParcelRemovedFromDeliveryMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-removed-from-delivery type: OrderMessage displayName: ParcelRemovedFromDeliveryMessage discriminatorValue: ParcelRemovedFromDelivery diff --git a/api-specs/api/types/message/ParcelTrackingDataUpdatedMessage.raml b/api-specs/api/types/message/ParcelTrackingDataUpdatedMessage.raml index c7f6a08127..039ba37e30 100644 --- a/api-specs/api/types/message/ParcelTrackingDataUpdatedMessage.raml +++ b/api-specs/api/types/message/ParcelTrackingDataUpdatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-tracking-data-updated type: OrderMessage displayName: ParcelTrackingDataUpdatedMessage discriminatorValue: ParcelTrackingDataUpdated diff --git a/api-specs/api/types/message/PaymentCreatedMessage.raml b/api-specs/api/types/message/PaymentCreatedMessage.raml index e276d372e0..1d69633c92 100644 --- a/api-specs/api/types/message/PaymentCreatedMessage.raml +++ b/api-specs/api/types/message/PaymentCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-created type: Message displayName: PaymentCreatedMessage discriminatorValue: PaymentCreated diff --git a/api-specs/api/types/message/PaymentInteractionAddedMessage.raml b/api-specs/api/types/message/PaymentInteractionAddedMessage.raml index 3e5af5d648..dade5604e9 100644 --- a/api-specs/api/types/message/PaymentInteractionAddedMessage.raml +++ b/api-specs/api/types/message/PaymentInteractionAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-interaction-added type: Message displayName: PaymentInteractionAddedMessage discriminatorValue: PaymentInteractionAdded diff --git a/api-specs/api/types/message/PaymentStatusInterfaceCodeSetMessage.raml b/api-specs/api/types/message/PaymentStatusInterfaceCodeSetMessage.raml index ad41651aac..87c003a03d 100644 --- a/api-specs/api/types/message/PaymentStatusInterfaceCodeSetMessage.raml +++ b/api-specs/api/types/message/PaymentStatusInterfaceCodeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-status-interface-code-set type: Message displayName: PaymentStatusInterfaceCodeSetMessage discriminatorValue: PaymentStatusInterfaceCodeSet diff --git a/api-specs/api/types/message/PaymentStatusStateTransitionMessage.raml b/api-specs/api/types/message/PaymentStatusStateTransitionMessage.raml index 344de6ca32..7335222e59 100644 --- a/api-specs/api/types/message/PaymentStatusStateTransitionMessage.raml +++ b/api-specs/api/types/message/PaymentStatusStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-status-state-transition type: Message displayName: PaymentStatusStateTransitionMessage discriminatorValue: PaymentStatusStateTransition diff --git a/api-specs/api/types/message/PaymentTransactionAddedMessage.raml b/api-specs/api/types/message/PaymentTransactionAddedMessage.raml index 3306ba884e..1fd345a00e 100644 --- a/api-specs/api/types/message/PaymentTransactionAddedMessage.raml +++ b/api-specs/api/types/message/PaymentTransactionAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-transaction-added type: Message displayName: PaymentTransactionAddedMessage discriminatorValue: PaymentTransactionAdded diff --git a/api-specs/api/types/message/PaymentTransactionStateChangedMessage.raml b/api-specs/api/types/message/PaymentTransactionStateChangedMessage.raml index 0cf0acf51c..78493afb30 100644 --- a/api-specs/api/types/message/PaymentTransactionStateChangedMessage.raml +++ b/api-specs/api/types/message/PaymentTransactionStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-transaction-state-changed type: Message displayName: PaymentTransactionStateChangedMessage discriminatorValue: PaymentTransactionStateChanged diff --git a/api-specs/api/types/message/ProductAddedToCategoryMessage.raml b/api-specs/api/types/message/ProductAddedToCategoryMessage.raml index 99e0d217f8..b66f068758 100644 --- a/api-specs/api/types/message/ProductAddedToCategoryMessage.raml +++ b/api-specs/api/types/message/ProductAddedToCategoryMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-added-to-category type: Message displayName: ProductAddedToCategoryMessage discriminatorValue: ProductAddedToCategory diff --git a/api-specs/api/types/message/ProductCreatedMessage.raml b/api-specs/api/types/message/ProductCreatedMessage.raml index ed5a0b1e9d..92a60e2f7f 100644 --- a/api-specs/api/types/message/ProductCreatedMessage.raml +++ b/api-specs/api/types/message/ProductCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-created type: Message displayName: ProductCreatedMessage discriminatorValue: ProductCreated diff --git a/api-specs/api/types/message/ProductDeletedMessage.raml b/api-specs/api/types/message/ProductDeletedMessage.raml index fd45fc6dc9..f414bddc78 100644 --- a/api-specs/api/types/message/ProductDeletedMessage.raml +++ b/api-specs/api/types/message/ProductDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-deleted type: Message displayName: ProductDeletedMessage discriminatorValue: ProductDeleted diff --git a/api-specs/api/types/message/ProductImageAddedMessage.raml b/api-specs/api/types/message/ProductImageAddedMessage.raml index 41900b921f..9383f27215 100644 --- a/api-specs/api/types/message/ProductImageAddedMessage.raml +++ b/api-specs/api/types/message/ProductImageAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-image-added type: Message displayName: ProductImageAddedMessage discriminatorValue: ProductImageAdded diff --git a/api-specs/api/types/message/ProductPriceAddedMessage.raml b/api-specs/api/types/message/ProductPriceAddedMessage.raml index a42910afed..f496b55d65 100644 --- a/api-specs/api/types/message/ProductPriceAddedMessage.raml +++ b/api-specs/api/types/message/ProductPriceAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-added type: Message displayName: ProductPriceAddedMessage discriminatorValue: ProductPriceAdded diff --git a/api-specs/api/types/message/ProductPriceChangedMessage.raml b/api-specs/api/types/message/ProductPriceChangedMessage.raml index 09d0bb0719..49d65aae85 100644 --- a/api-specs/api/types/message/ProductPriceChangedMessage.raml +++ b/api-specs/api/types/message/ProductPriceChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-changed type: Message displayName: ProductPriceChangedMessage discriminatorValue: ProductPriceChanged diff --git a/api-specs/api/types/message/ProductPriceDiscountsSetMessage.raml b/api-specs/api/types/message/ProductPriceDiscountsSetMessage.raml index 7b929eac4d..ed0562dca9 100644 --- a/api-specs/api/types/message/ProductPriceDiscountsSetMessage.raml +++ b/api-specs/api/types/message/ProductPriceDiscountsSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-price-discounts-set type: Message displayName: ProductPriceDiscountsSetMessage discriminatorValue: ProductPriceDiscountsSet diff --git a/api-specs/api/types/message/ProductPriceDiscountsSetUpdatedPrice.raml b/api-specs/api/types/message/ProductPriceDiscountsSetUpdatedPrice.raml index 471bb303cb..dc66c7a695 100644 --- a/api-specs/api/types/message/ProductPriceDiscountsSetUpdatedPrice.raml +++ b/api-specs/api/types/message/ProductPriceDiscountsSetUpdatedPrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-discounts-set type: object displayName: ProductPriceDiscountsSetUpdatedPrice description: | diff --git a/api-specs/api/types/message/ProductPriceExternalDiscountSetMessage.raml b/api-specs/api/types/message/ProductPriceExternalDiscountSetMessage.raml index e89570505d..4f22359248 100644 --- a/api-specs/api/types/message/ProductPriceExternalDiscountSetMessage.raml +++ b/api-specs/api/types/message/ProductPriceExternalDiscountSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-price-external-discount-set type: Message displayName: ProductPriceExternalDiscountSetMessage discriminatorValue: ProductPriceExternalDiscountSet diff --git a/api-specs/api/types/message/ProductPriceKeySetMessage.raml b/api-specs/api/types/message/ProductPriceKeySetMessage.raml index a1b1466f11..70ee8d12fa 100644 --- a/api-specs/api/types/message/ProductPriceKeySetMessage.raml +++ b/api-specs/api/types/message/ProductPriceKeySetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-key-set type: Message displayName: ProductPriceKeySetMessage discriminatorValue: ProductPriceKeySet diff --git a/api-specs/api/types/message/ProductPriceModeSetMessage.raml b/api-specs/api/types/message/ProductPriceModeSetMessage.raml index b0208a82ef..3b3d24f006 100644 --- a/api-specs/api/types/message/ProductPriceModeSetMessage.raml +++ b/api-specs/api/types/message/ProductPriceModeSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-mode-set type: Message displayName: ProductPriceModeSetMessage discriminatorValue: ProductPriceModeSet diff --git a/api-specs/api/types/message/ProductPriceRemovedMessage.raml b/api-specs/api/types/message/ProductPriceRemovedMessage.raml index 033f40864a..61a30ef54a 100644 --- a/api-specs/api/types/message/ProductPriceRemovedMessage.raml +++ b/api-specs/api/types/message/ProductPriceRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-removed type: Message displayName: ProductPriceRemovedMessage discriminatorValue: ProductPriceRemoved diff --git a/api-specs/api/types/message/ProductPricesSetMessage.raml b/api-specs/api/types/message/ProductPricesSetMessage.raml index 97ecb0c189..66994130ea 100644 --- a/api-specs/api/types/message/ProductPricesSetMessage.raml +++ b/api-specs/api/types/message/ProductPricesSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-prices-set type: Message displayName: ProductPricesSetMessage discriminatorValue: ProductPricesSet diff --git a/api-specs/api/types/message/ProductPublishedMessage.raml b/api-specs/api/types/message/ProductPublishedMessage.raml index bef76b8743..99c4761885 100644 --- a/api-specs/api/types/message/ProductPublishedMessage.raml +++ b/api-specs/api/types/message/ProductPublishedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-published type: Message displayName: ProductPublishedMessage discriminatorValue: ProductPublished diff --git a/api-specs/api/types/message/ProductRemovedFromCategoryMessage.raml b/api-specs/api/types/message/ProductRemovedFromCategoryMessage.raml index f727248062..599093c8d6 100644 --- a/api-specs/api/types/message/ProductRemovedFromCategoryMessage.raml +++ b/api-specs/api/types/message/ProductRemovedFromCategoryMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-removed-from-category type: Message displayName: ProductRemovedFromCategoryMessage discriminatorValue: ProductRemovedFromCategory diff --git a/api-specs/api/types/message/ProductRevertedStagedChangesMessage.raml b/api-specs/api/types/message/ProductRevertedStagedChangesMessage.raml index 04e49a291f..b1152e9e04 100644 --- a/api-specs/api/types/message/ProductRevertedStagedChangesMessage.raml +++ b/api-specs/api/types/message/ProductRevertedStagedChangesMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-reverted-staged-changes type: Message displayName: ProductRevertedStagedChangesMessage discriminatorValue: ProductRevertedStagedChanges diff --git a/api-specs/api/types/message/ProductSelectionCreatedMessage.raml b/api-specs/api/types/message/ProductSelectionCreatedMessage.raml index b12ab2ba45..1c87ae989d 100644 --- a/api-specs/api/types/message/ProductSelectionCreatedMessage.raml +++ b/api-specs/api/types/message/ProductSelectionCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-created type: Message displayName: ProductSelectionCreatedMessage discriminatorValue: ProductSelectionCreated diff --git a/api-specs/api/types/message/ProductSelectionDeletedMessage.raml b/api-specs/api/types/message/ProductSelectionDeletedMessage.raml index 4411581902..552df07a72 100644 --- a/api-specs/api/types/message/ProductSelectionDeletedMessage.raml +++ b/api-specs/api/types/message/ProductSelectionDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-deleted type: Message displayName: ProductSelectionDeletedMessage discriminatorValue: ProductSelectionDeleted diff --git a/api-specs/api/types/message/ProductSelectionProductAddedMessage.raml b/api-specs/api/types/message/ProductSelectionProductAddedMessage.raml index bd7832f540..79167398d8 100644 --- a/api-specs/api/types/message/ProductSelectionProductAddedMessage.raml +++ b/api-specs/api/types/message/ProductSelectionProductAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-product-added type: Message displayName: ProductSelectionProductAddedMessage discriminatorValue: ProductSelectionProductAdded diff --git a/api-specs/api/types/message/ProductSelectionProductExcludedMessage.raml b/api-specs/api/types/message/ProductSelectionProductExcludedMessage.raml index 68723bf11d..b6a3d4677f 100644 --- a/api-specs/api/types/message/ProductSelectionProductExcludedMessage.raml +++ b/api-specs/api/types/message/ProductSelectionProductExcludedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-product-excluded type: Message displayName: ProductSelectionProductExcludedMessage discriminatorValue: ProductSelectionProductExcluded diff --git a/api-specs/api/types/message/ProductSelectionProductRemovedMessage.raml b/api-specs/api/types/message/ProductSelectionProductRemovedMessage.raml index 2d6c67a141..93c56cd1a0 100644 --- a/api-specs/api/types/message/ProductSelectionProductRemovedMessage.raml +++ b/api-specs/api/types/message/ProductSelectionProductRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-product-removed type: Message displayName: ProductSelectionProductRemovedMessage discriminatorValue: ProductSelectionProductRemoved diff --git a/api-specs/api/types/message/ProductSlugChangedMessage.raml b/api-specs/api/types/message/ProductSlugChangedMessage.raml index afd89f8179..0e8d8d889e 100644 --- a/api-specs/api/types/message/ProductSlugChangedMessage.raml +++ b/api-specs/api/types/message/ProductSlugChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-slug-changed type: Message displayName: ProductSlugChangedMessage discriminatorValue: ProductSlugChanged diff --git a/api-specs/api/types/message/ProductStateTransitionMessage.raml b/api-specs/api/types/message/ProductStateTransitionMessage.raml index 0a5994ac31..44fb934543 100644 --- a/api-specs/api/types/message/ProductStateTransitionMessage.raml +++ b/api-specs/api/types/message/ProductStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-state-transition type: Message displayName: ProductStateTransitionMessage discriminatorValue: ProductStateTransition diff --git a/api-specs/api/types/message/ProductTailoringCreatedMessage.raml b/api-specs/api/types/message/ProductTailoringCreatedMessage.raml new file mode 100644 index 0000000000..9af229ac74 --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringCreatedMessage.raml @@ -0,0 +1,42 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringCreatedMessage +discriminatorValue: ProductTailoringCreated +description: | + Generated after a successful [Create Product Tailoring](/../api/projects/product-tailoring#create-producttailoring) or + [Create Product Tailoring in Store](/../api/projects/product-tailoring#create-producttailoring-in-store) request. +properties: + key?: + type: string + description: | + User-defined unique identifier of the Product Tailoring. + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + description?: + type: LocalizedString + description: | + The description of the [Product Tailoring](ctp:api:type:ProductTailoring) at the time of creation. + name?: + type: LocalizedString + description: | + The name of the [Product Tailoring](ctp:api:type:ProductTailoring) at the time of creation. + slug?: + type: LocalizedString + description: | + The slug of the [Product Tailoring](ctp:api:type:ProductTailoring) at the time of creation. + published: + type: boolean + description: | + `true` if the ProductTailoring is published. diff --git a/api-specs/api/types/message/ProductTailoringDeletedMessage.raml b/api-specs/api/types/message/ProductTailoringDeletedMessage.raml new file mode 100644 index 0000000000..0e8fe07d7a --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringDeletedMessage.raml @@ -0,0 +1,22 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringDeletedMessage +discriminatorValue: ProductTailoringDeleted +description: | + Generated after a successful [Delete Product Tailoring](/../api/projects/product-tailoring#delete-producttailoring) or + [Delete ProductTailoring assigned to Product in Store](/../api/projects/product-tailoring#delete-producttailoring-assigned-to-product-in-store) request. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. diff --git a/api-specs/api/types/message/ProductTailoringDescriptionSetMessage.raml b/api-specs/api/types/message/ProductTailoringDescriptionSetMessage.raml new file mode 100644 index 0000000000..8275706e4c --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringDescriptionSetMessage.raml @@ -0,0 +1,29 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringDescriptionSetMessage +discriminatorValue: ProductTailoringDescriptionSet +description: | + Generated after a successful Product Tailoring [Set Description](ctp:api:type:ProductTailoringSetDescriptionAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + description?: + type: LocalizedString + description: | + The description of the [Product Tailoring](ctp:api:type:ProductTailoring) after the [Set Description](ctp:api:type:ProductTailoringSetDescriptionAction) update action. + oldDescription?: + type: LocalizedString + description: | + The description of the [ProductTailoring](ctp:api:type:ProductTailoring) before the [Set Description](ctp:api:type:ProductTailoringSetDescriptionAction) update action. diff --git a/api-specs/api/types/message/ProductTailoringNameSetMessage.raml b/api-specs/api/types/message/ProductTailoringNameSetMessage.raml new file mode 100644 index 0000000000..a5ecb49983 --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringNameSetMessage.raml @@ -0,0 +1,29 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringNameSetMessage +discriminatorValue: ProductTailoringNameSet +description: | + Generated after a successful Product Tailoring [Set Name](ctp:api:type:ProductTailoringSetNameAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + name?: + type: LocalizedString + description: | + The name of the [Product Tailoring](ctp:api:type:ProductTailoring) after the [Set Name](ctp:api:type:ProductTailoringSetNameAction) update action. + oldName?: + type: LocalizedString + description: | + The name of the [ProductTailoring](ctp:api:type:ProductTailoring) before the [Set Name](ctp:api:type:ProductTailoringSetNameAction) update action. diff --git a/api-specs/api/types/message/ProductTailoringPublishedMessage.raml b/api-specs/api/types/message/ProductTailoringPublishedMessage.raml new file mode 100644 index 0000000000..b3e7384f41 --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringPublishedMessage.raml @@ -0,0 +1,21 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringPublishedMessage +discriminatorValue: ProductTailoringPublished +description: | + Generated after a successful [Product Tailoring Publish](ctp:api:type:ProductTailoringPublishAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. diff --git a/api-specs/api/types/message/ProductTailoringSlugSetMessage.raml b/api-specs/api/types/message/ProductTailoringSlugSetMessage.raml new file mode 100644 index 0000000000..3598da411a --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringSlugSetMessage.raml @@ -0,0 +1,29 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringSlugSetMessage +discriminatorValue: ProductTailoringSlugSet +description: | + Generated after a successful Product Tailoring [Set Slug](ctp:api:type:ProductTailoringSetSlugAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + slug?: + type: LocalizedString + description: | + The slug of the [Product Tailoring](ctp:api:type:ProductTailoring) after the [Set Slug](ctp:api:type:ProductTailoringSetSlugAction) update action. + oldSlug?: + type: LocalizedString + description: | + The slug of the [ProductTailoring](ctp:api:type:ProductTailoring) before the [Set Slug](ctp:api:type:ProductTailoringSetSlugAction) update action. diff --git a/api-specs/api/types/message/ProductTailoringUnpublishedMessage.raml b/api-specs/api/types/message/ProductTailoringUnpublishedMessage.raml new file mode 100644 index 0000000000..64f329a221 --- /dev/null +++ b/api-specs/api/types/message/ProductTailoringUnpublishedMessage.raml @@ -0,0 +1,21 @@ +#%RAML 1.0 DataType +(package): Message +type: Message +(beta): true +displayName: ProductTailoringUnpublishedMessage +discriminatorValue: ProductTailoringUnpublished +description: | + Generated after a successful [Product Tailoring Unpublish](ctp:api:type:ProductTailoringUnpublishAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. diff --git a/api-specs/api/types/message/ProductUnpublishedMessage.raml b/api-specs/api/types/message/ProductUnpublishedMessage.raml index 05aed6c5eb..e68223edc1 100644 --- a/api-specs/api/types/message/ProductUnpublishedMessage.raml +++ b/api-specs/api/types/message/ProductUnpublishedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-unpublished type: Message displayName: ProductUnpublishedMessage discriminatorValue: ProductUnpublished diff --git a/api-specs/api/types/message/ProductVariantAddedMessage.raml b/api-specs/api/types/message/ProductVariantAddedMessage.raml index 79fe57ce40..a35d85e7bb 100644 --- a/api-specs/api/types/message/ProductVariantAddedMessage.raml +++ b/api-specs/api/types/message/ProductVariantAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-variant-added type: Message displayName: ProductVariantAddedMessage discriminatorValue: ProductVariantAdded diff --git a/api-specs/api/types/message/ProductVariantDeletedMessage.raml b/api-specs/api/types/message/ProductVariantDeletedMessage.raml index 968199735b..25b248f2d9 100644 --- a/api-specs/api/types/message/ProductVariantDeletedMessage.raml +++ b/api-specs/api/types/message/ProductVariantDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-variant-deleted type: Message displayName: ProductVariantDeletedMessage discriminatorValue: ProductVariantDeleted diff --git a/api-specs/api/types/message/QuoteCreatedMessage.raml b/api-specs/api/types/message/QuoteCreatedMessage.raml index 8266d33141..3b419e05e1 100644 --- a/api-specs/api/types/message/QuoteCreatedMessage.raml +++ b/api-specs/api/types/message/QuoteCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-created type: Message displayName: QuoteCreatedMessage discriminatorValue: QuoteCreated diff --git a/api-specs/api/types/message/QuoteCustomerChangedMessage.raml b/api-specs/api/types/message/QuoteCustomerChangedMessage.raml index c09eeefda3..6b5f54c29d 100644 --- a/api-specs/api/types/message/QuoteCustomerChangedMessage.raml +++ b/api-specs/api/types/message/QuoteCustomerChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-change-customer type: Message displayName: QuoteCustomerChangedMessage discriminatorValue: QuoteCustomerChanged diff --git a/api-specs/api/types/message/QuoteDeletedMessage.raml b/api-specs/api/types/message/QuoteDeletedMessage.raml index 402a5528c6..4ae14424b5 100644 --- a/api-specs/api/types/message/QuoteDeletedMessage.raml +++ b/api-specs/api/types/message/QuoteDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-deleted type: Message displayName: QuoteDeletedMessage discriminatorValue: QuoteDeleted diff --git a/api-specs/api/types/message/QuoteRenegotiationRequestedMessage.raml b/api-specs/api/types/message/QuoteRenegotiationRequestedMessage.raml index e5f23e7ebc..40c396aa45 100644 --- a/api-specs/api/types/message/QuoteRenegotiationRequestedMessage.raml +++ b/api-specs/api/types/message/QuoteRenegotiationRequestedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-renegotiation-requested type: Message displayName: QuoteRenegotiationRequestedMessage discriminatorValue: QuoteRenegotiationRequested diff --git a/api-specs/api/types/message/QuoteRequestCreatedMessage.raml b/api-specs/api/types/message/QuoteRequestCreatedMessage.raml index e3fc386532..6e6fdcdbe1 100644 --- a/api-specs/api/types/message/QuoteRequestCreatedMessage.raml +++ b/api-specs/api/types/message/QuoteRequestCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-created type: Message displayName: QuoteRequestCreatedMessage discriminatorValue: QuoteRequestCreated diff --git a/api-specs/api/types/message/QuoteRequestCustomerChangedMessage.raml b/api-specs/api/types/message/QuoteRequestCustomerChangedMessage.raml index aac7db155b..990ec3693d 100644 --- a/api-specs/api/types/message/QuoteRequestCustomerChangedMessage.raml +++ b/api-specs/api/types/message/QuoteRequestCustomerChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-change-customer type: Message displayName: QuoteRequestCustomerChangedMessage discriminatorValue: QuoteRequestCustomerChanged diff --git a/api-specs/api/types/message/QuoteRequestDeletedMessage.raml b/api-specs/api/types/message/QuoteRequestDeletedMessage.raml index 3171d02eb4..085b0c350c 100644 --- a/api-specs/api/types/message/QuoteRequestDeletedMessage.raml +++ b/api-specs/api/types/message/QuoteRequestDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-deleted type: Message displayName: QuoteRequestDeletedMessage discriminatorValue: QuoteRequestDeleted diff --git a/api-specs/api/types/message/QuoteRequestStateChangedMessage.raml b/api-specs/api/types/message/QuoteRequestStateChangedMessage.raml index 766296a208..25f72b0a2a 100644 --- a/api-specs/api/types/message/QuoteRequestStateChangedMessage.raml +++ b/api-specs/api/types/message/QuoteRequestStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-state-changed type: Message displayName: QuoteRequestStateChangedMessage discriminatorValue: QuoteRequestStateChanged diff --git a/api-specs/api/types/message/QuoteRequestStateTransitionMessage.raml b/api-specs/api/types/message/QuoteRequestStateTransitionMessage.raml index 8b4e386c32..c35f441f70 100644 --- a/api-specs/api/types/message/QuoteRequestStateTransitionMessage.raml +++ b/api-specs/api/types/message/QuoteRequestStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-state-transition type: Message displayName: QuoteRequestStateTransitionMessage discriminatorValue: QuoteRequestStateTransition diff --git a/api-specs/api/types/message/QuoteStateChangedMessage.raml b/api-specs/api/types/message/QuoteStateChangedMessage.raml index 51aa3dee2c..5e383990af 100644 --- a/api-specs/api/types/message/QuoteStateChangedMessage.raml +++ b/api-specs/api/types/message/QuoteStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-state-changed type: Message displayName: QuoteStateChangedMessage discriminatorValue: QuoteStateChanged diff --git a/api-specs/api/types/message/QuoteStateTransitionMessage.raml b/api-specs/api/types/message/QuoteStateTransitionMessage.raml index 47f423d18b..fe1c9c5354 100644 --- a/api-specs/api/types/message/QuoteStateTransitionMessage.raml +++ b/api-specs/api/types/message/QuoteStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-state-transition type: Message displayName: QuoteStateTransitionMessage discriminatorValue: QuoteStateTransition diff --git a/api-specs/api/types/message/ReturnInfoAddedMessage.raml b/api-specs/api/types/message/ReturnInfoAddedMessage.raml index 8baa8a483a..6e29738e3e 100644 --- a/api-specs/api/types/message/ReturnInfoAddedMessage.raml +++ b/api-specs/api/types/message/ReturnInfoAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#return-info-added type: OrderMessage displayName: ReturnInfoAddedMessage discriminatorValue: ReturnInfoAdded diff --git a/api-specs/api/types/message/ReturnInfoSetMessage.raml b/api-specs/api/types/message/ReturnInfoSetMessage.raml index 914b8124d2..3eed55458d 100644 --- a/api-specs/api/types/message/ReturnInfoSetMessage.raml +++ b/api-specs/api/types/message/ReturnInfoSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#return-info-set type: OrderMessage displayName: ReturnInfoSetMessage discriminatorValue: ReturnInfoSet diff --git a/api-specs/api/types/message/ReviewCreatedMessage.raml b/api-specs/api/types/message/ReviewCreatedMessage.raml index cda81e4ee0..671f78aa03 100644 --- a/api-specs/api/types/message/ReviewCreatedMessage.raml +++ b/api-specs/api/types/message/ReviewCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#review-created type: Message displayName: ReviewCreatedMessage discriminatorValue: ReviewCreated diff --git a/api-specs/api/types/message/ReviewRatingSetMessage.raml b/api-specs/api/types/message/ReviewRatingSetMessage.raml index 46e0484711..dbbdcfe585 100644 --- a/api-specs/api/types/message/ReviewRatingSetMessage.raml +++ b/api-specs/api/types/message/ReviewRatingSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#review-rating-set type: Message displayName: ReviewRatingSetMessage discriminatorValue: ReviewRatingSet diff --git a/api-specs/api/types/message/ReviewStateTransitionMessage.raml b/api-specs/api/types/message/ReviewStateTransitionMessage.raml index 99a417545b..02f5567e80 100644 --- a/api-specs/api/types/message/ReviewStateTransitionMessage.raml +++ b/api-specs/api/types/message/ReviewStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#review-state-transition type: Message displayName: ReviewStateTransitionMessage discriminatorValue: ReviewStateTransition diff --git a/api-specs/api/types/message/StagedQuoteCreatedMessage.raml b/api-specs/api/types/message/StagedQuoteCreatedMessage.raml index 117990fa6a..11f6983585 100644 --- a/api-specs/api/types/message/StagedQuoteCreatedMessage.raml +++ b/api-specs/api/types/message/StagedQuoteCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotecreatedmessage type: Message displayName: StagedQuoteCreatedMessage discriminatorValue: StagedQuoteCreated diff --git a/api-specs/api/types/message/StagedQuoteDeletedMessage.raml b/api-specs/api/types/message/StagedQuoteDeletedMessage.raml index 13b83bbffd..89848ccc0a 100644 --- a/api-specs/api/types/message/StagedQuoteDeletedMessage.raml +++ b/api-specs/api/types/message/StagedQuoteDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotedeletedmessage type: Message displayName: StagedQuoteDeletedMessage discriminatorValue: StagedQuoteDeleted diff --git a/api-specs/api/types/message/StagedQuoteSellerCommentSetMessage.raml b/api-specs/api/types/message/StagedQuoteSellerCommentSetMessage.raml index 74bd4d01b0..eab336bcb8 100644 --- a/api-specs/api/types/message/StagedQuoteSellerCommentSetMessage.raml +++ b/api-specs/api/types/message/StagedQuoteSellerCommentSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotesellercommentsetmessage type: Message displayName: StagedQuoteSellerCommentSetMessage discriminatorValue: StagedQuoteSellerCommentSet diff --git a/api-specs/api/types/message/StagedQuoteStateChangedMessage.raml b/api-specs/api/types/message/StagedQuoteStateChangedMessage.raml index 56f999ffdb..2297164f3f 100644 --- a/api-specs/api/types/message/StagedQuoteStateChangedMessage.raml +++ b/api-specs/api/types/message/StagedQuoteStateChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotestatechangedmessage type: Message displayName: StagedQuoteStateChangedMessage discriminatorValue: StagedQuoteStateChanged diff --git a/api-specs/api/types/message/StagedQuoteStateTransitionMessage.raml b/api-specs/api/types/message/StagedQuoteStateTransitionMessage.raml index 80940a3595..0e77315e8e 100644 --- a/api-specs/api/types/message/StagedQuoteStateTransitionMessage.raml +++ b/api-specs/api/types/message/StagedQuoteStateTransitionMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#staged-quote-state-transition type: Message displayName: StagedQuoteStateTransitionMessage discriminatorValue: StagedQuoteStateTransition diff --git a/api-specs/api/types/message/StagedQuoteValidToSetMessage.raml b/api-specs/api/types/message/StagedQuoteValidToSetMessage.raml index d6e06b1743..71d09b073a 100644 --- a/api-specs/api/types/message/StagedQuoteValidToSetMessage.raml +++ b/api-specs/api/types/message/StagedQuoteValidToSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotevalidtosetmessage type: Message displayName: StagedQuoteValidToSetMessage discriminatorValue: StagedQuoteValidToSet diff --git a/api-specs/api/types/message/StandalonePriceActiveChangedMessage.raml b/api-specs/api/types/message/StandalonePriceActiveChangedMessage.raml index 9973a72fdd..911b862391 100644 --- a/api-specs/api/types/message/StandalonePriceActiveChangedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceActiveChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-active-changed type: Message displayName: StandalonePriceActiveChangedMessage discriminatorValue: StandalonePriceActiveChanged diff --git a/api-specs/api/types/message/StandalonePriceCreatedMessage.raml b/api-specs/api/types/message/StandalonePriceCreatedMessage.raml index 203bdb4a47..94c8ad1eac 100644 --- a/api-specs/api/types/message/StandalonePriceCreatedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-created type: Message displayName: StandalonePriceCreatedMessage discriminatorValue: StandalonePriceCreated diff --git a/api-specs/api/types/message/StandalonePriceDeletedMessage.raml b/api-specs/api/types/message/StandalonePriceDeletedMessage.raml index e9c8314186..c987b4bdb4 100644 --- a/api-specs/api/types/message/StandalonePriceDeletedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-deleted type: Message displayName: StandalonePriceDeletedMessage discriminatorValue: StandalonePriceDeleted diff --git a/api-specs/api/types/message/StandalonePriceDiscountSetMessage.raml b/api-specs/api/types/message/StandalonePriceDiscountSetMessage.raml index 3b4d24b4d6..4c9afbb942 100644 --- a/api-specs/api/types/message/StandalonePriceDiscountSetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceDiscountSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-discount-set type: Message displayName: StandalonePriceDiscountSetMessage discriminatorValue: StandalonePriceDiscountSet diff --git a/api-specs/api/types/message/StandalonePriceExternalDiscountSetMessage.raml b/api-specs/api/types/message/StandalonePriceExternalDiscountSetMessage.raml index 929bbf2f8a..75f0b7161d 100644 --- a/api-specs/api/types/message/StandalonePriceExternalDiscountSetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceExternalDiscountSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-external-discount-set type: Message displayName: StandalonePriceExternalDiscountSetMessage discriminatorValue: StandalonePriceExternalDiscountSet diff --git a/api-specs/api/types/message/StandalonePriceKeySetMessage.raml b/api-specs/api/types/message/StandalonePriceKeySetMessage.raml index 93833170f5..6f05d93aa7 100644 --- a/api-specs/api/types/message/StandalonePriceKeySetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceKeySetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-key-set type: Message displayName: StandalonePriceKeySetMessage discriminatorValue: StandalonePriceKeySet diff --git a/api-specs/api/types/message/StandalonePriceStagedChangesAppliedMessage.raml b/api-specs/api/types/message/StandalonePriceStagedChangesAppliedMessage.raml index daf23dff28..0b581c10ee 100644 --- a/api-specs/api/types/message/StandalonePriceStagedChangesAppliedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceStagedChangesAppliedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-staged-changes-applied type: Message displayName: StandalonePriceStagedChangesAppliedMessage discriminatorValue: StandalonePriceStagedChangesApplied diff --git a/api-specs/api/types/message/StandalonePriceStagedChangesRemovedMessage.raml b/api-specs/api/types/message/StandalonePriceStagedChangesRemovedMessage.raml index 11b5908820..0b2015481a 100644 --- a/api-specs/api/types/message/StandalonePriceStagedChangesRemovedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceStagedChangesRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-staged-changes-removed type: Message displayName: StandalonePriceStagedChangesRemovedMessage discriminatorValue: StandalonePriceStagedChangesRemoved diff --git a/api-specs/api/types/message/StandalonePriceTierAddedMessage.raml b/api-specs/api/types/message/StandalonePriceTierAddedMessage.raml index b991831331..e9b469ea82 100644 --- a/api-specs/api/types/message/StandalonePriceTierAddedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceTierAddedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: Message displayName: StandalonePriceTierAddedMessage discriminatorValue: StandalonePriceTierAdded diff --git a/api-specs/api/types/message/StandalonePriceTierRemovedMessage.raml b/api-specs/api/types/message/StandalonePriceTierRemovedMessage.raml index 4ded5930fb..c46ea87cda 100644 --- a/api-specs/api/types/message/StandalonePriceTierRemovedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceTierRemovedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: Message displayName: StandalonePriceTierRemovedMessage discriminatorValue: StandalonePriceTierRemoved diff --git a/api-specs/api/types/message/StandalonePriceTiersSetMessage.raml b/api-specs/api/types/message/StandalonePriceTiersSetMessage.raml index 811768325a..ef61275452 100644 --- a/api-specs/api/types/message/StandalonePriceTiersSetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceTiersSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: Message displayName: StandalonePriceTiersSetMessage discriminatorValue: StandalonePriceTiersSet diff --git a/api-specs/api/types/message/StandalonePriceValidFromAndUntilSetMessage.raml b/api-specs/api/types/message/StandalonePriceValidFromAndUntilSetMessage.raml index a6bda608b5..cdf19d3705 100644 --- a/api-specs/api/types/message/StandalonePriceValidFromAndUntilSetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceValidFromAndUntilSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-valid-from-and-until-set type: Message displayName: StandalonePriceValidFromAndUntilSetMessage discriminatorValue: StandalonePriceValidFromAndUntilSet diff --git a/api-specs/api/types/message/StandalonePriceValidFromSetMessage.raml b/api-specs/api/types/message/StandalonePriceValidFromSetMessage.raml index 581b2966c1..f7c349fb58 100644 --- a/api-specs/api/types/message/StandalonePriceValidFromSetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceValidFromSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-valid-from-set type: Message displayName: StandalonePriceValidFromSetMessage discriminatorValue: StandalonePriceValidFromSet diff --git a/api-specs/api/types/message/StandalonePriceValidUntilSetMessage.raml b/api-specs/api/types/message/StandalonePriceValidUntilSetMessage.raml index 0fcedea66a..3e20a11ec2 100644 --- a/api-specs/api/types/message/StandalonePriceValidUntilSetMessage.raml +++ b/api-specs/api/types/message/StandalonePriceValidUntilSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-valid-until-set type: Message displayName: StandalonePriceValidUntilSetMessage discriminatorValue: StandalonePriceValidUntilSet diff --git a/api-specs/api/types/message/StandalonePriceValueChangedMessage.raml b/api-specs/api/types/message/StandalonePriceValueChangedMessage.raml index 7f9d5c97ce..24f9869c40 100644 --- a/api-specs/api/types/message/StandalonePriceValueChangedMessage.raml +++ b/api-specs/api/types/message/StandalonePriceValueChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: Message displayName: StandalonePriceValueChangedMessage discriminatorValue: StandalonePriceValueChanged diff --git a/api-specs/api/types/message/StoreCountriesChangedMessage.raml b/api-specs/api/types/message/StoreCountriesChangedMessage.raml index 0073d2cbed..c87b2f55f5 100644 --- a/api-specs/api/types/message/StoreCountriesChangedMessage.raml +++ b/api-specs/api/types/message/StoreCountriesChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-countries-changed type: Message displayName: StoreCountriesChangedMessage discriminatorValue: StoreCountriesChanged diff --git a/api-specs/api/types/message/StoreCreatedMessage.raml b/api-specs/api/types/message/StoreCreatedMessage.raml index 1bb17e72e8..51df0440a1 100644 --- a/api-specs/api/types/message/StoreCreatedMessage.raml +++ b/api-specs/api/types/message/StoreCreatedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#store-created type: Message displayName: StoreCreatedMessage discriminatorValue: StoreCreated diff --git a/api-specs/api/types/message/StoreDeletedMessage.raml b/api-specs/api/types/message/StoreDeletedMessage.raml index 9e33d01d1a..82fa20bba5 100644 --- a/api-specs/api/types/message/StoreDeletedMessage.raml +++ b/api-specs/api/types/message/StoreDeletedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#store-deleted type: Message displayName: StoreDeletedMessage discriminatorValue: StoreDeleted diff --git a/api-specs/api/types/message/StoreDistributionChannelsChangedMessage.raml b/api-specs/api/types/message/StoreDistributionChannelsChangedMessage.raml index 5e2473fce9..14329e3032 100644 --- a/api-specs/api/types/message/StoreDistributionChannelsChangedMessage.raml +++ b/api-specs/api/types/message/StoreDistributionChannelsChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-distribution-channels-changed type: Message displayName: StoreDistributionChannelsChangedMessage discriminatorValue: StoreDistributionChannelsChanged diff --git a/api-specs/api/types/message/StoreLanguagesChangedMessage.raml b/api-specs/api/types/message/StoreLanguagesChangedMessage.raml index 1a848658e6..177f71e3c6 100644 --- a/api-specs/api/types/message/StoreLanguagesChangedMessage.raml +++ b/api-specs/api/types/message/StoreLanguagesChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-languages-changed type: Message displayName: StoreLanguagesChangedMessage discriminatorValue: StoreLanguagesChanged diff --git a/api-specs/api/types/message/StoreNameSetMessage.raml b/api-specs/api/types/message/StoreNameSetMessage.raml index 29783268ef..0ed29324bb 100644 --- a/api-specs/api/types/message/StoreNameSetMessage.raml +++ b/api-specs/api/types/message/StoreNameSetMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-name-set type: Message displayName: StoreNameSetMessage discriminatorValue: StoreNameSet diff --git a/api-specs/api/types/message/StoreProductSelectionsChangedMessage.raml b/api-specs/api/types/message/StoreProductSelectionsChangedMessage.raml index e5be88b2c7..8731580776 100644 --- a/api-specs/api/types/message/StoreProductSelectionsChangedMessage.raml +++ b/api-specs/api/types/message/StoreProductSelectionsChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#store-product-selections-changed type: Message displayName: StoreProductSelectionsChangedMessage discriminatorValue: StoreProductSelectionsChanged diff --git a/api-specs/api/types/message/StoreSupplyChannelsChangedMessage.raml b/api-specs/api/types/message/StoreSupplyChannelsChangedMessage.raml index 0539630e15..625828e39b 100644 --- a/api-specs/api/types/message/StoreSupplyChannelsChangedMessage.raml +++ b/api-specs/api/types/message/StoreSupplyChannelsChangedMessage.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-supply-channels-changed type: Message displayName: StoreSupplyChannelsChangedMessage discriminatorValue: StoreSupplyChannelsChanged diff --git a/api-specs/api/types/message/UserProvidedIdentifiers.raml b/api-specs/api/types/message/UserProvidedIdentifiers.raml index 926aedabdb..a4047b02e8 100644 --- a/api-specs/api/types/message/UserProvidedIdentifiers.raml +++ b/api-specs/api/types/message/UserProvidedIdentifiers.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#userprovidedidentifiers displayName: UserProvidedIdentifiers type: object description: | diff --git a/api-specs/api/types/message/payload/AssociateRoleBuyerAssignableChangedMessagePayload.raml b/api-specs/api/types/message/payload/AssociateRoleBuyerAssignableChangedMessagePayload.raml index 54a7cc21fe..c8ec305ed1 100644 --- a/api-specs/api/types/message/payload/AssociateRoleBuyerAssignableChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/AssociateRoleBuyerAssignableChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolebuyerassignablechanged type: MessagePayload displayName: AssociateRoleBuyerAssignableChangedMessagePayload discriminatorValue: AssociateRoleBuyerAssignableChanged diff --git a/api-specs/api/types/message/payload/AssociateRoleNameChangedMessagePayload.raml b/api-specs/api/types/message/payload/AssociateRoleNameChangedMessagePayload.raml index 6616d4e3ef..9fb1579b5e 100644 --- a/api-specs/api/types/message/payload/AssociateRoleNameChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/AssociateRoleNameChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolenamesetmessage type: MessagePayload displayName: AssociateRoleNameSetMessagePayload discriminatorValue: AssociateRoleNameSet diff --git a/api-specs/api/types/message/payload/AssociateRolePermissionAddedMessagePayload.raml b/api-specs/api/types/message/payload/AssociateRolePermissionAddedMessagePayload.raml index 1c89d655b2..12c2b9f801 100644 --- a/api-specs/api/types/message/payload/AssociateRolePermissionAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/AssociateRolePermissionAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolepermissionadded type: MessagePayload displayName: AssociateRolePermissionAddedMessagePayload discriminatorValue: AssociateRolePermissionAdded diff --git a/api-specs/api/types/message/payload/AssociateRolePermissionRemovedMessagePayload.raml b/api-specs/api/types/message/payload/AssociateRolePermissionRemovedMessagePayload.raml index 2e163ff403..f5c21cfad7 100644 --- a/api-specs/api/types/message/payload/AssociateRolePermissionRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/AssociateRolePermissionRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolepermissionremoved type: MessagePayload displayName: AssociateRolePermissionRemovedMessagePayload discriminatorValue: AssociateRolePermissionRemoved diff --git a/api-specs/api/types/message/payload/AssociateRolePermissionsSetMessagePayload.raml b/api-specs/api/types/message/payload/AssociateRolePermissionsSetMessagePayload.raml index 6cff32262b..fcec9e4b73 100644 --- a/api-specs/api/types/message/payload/AssociateRolePermissionsSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/AssociateRolePermissionsSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#associaterolepermissionsset type: MessagePayload displayName: AssociateRolePermissionsSetMessagePayload discriminatorValue: AssociateRolePermissionsSet diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressAddedMessagePayload.raml index 27d864f6de..1b58e8f394 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitaddressaddedmessage type: MessagePayload displayName: BusinessUnitAddressAddedMessagePayload discriminatorValue: BusinessUnitAddressAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressChangedMessagePayload.raml index e70272f08e..ccac79c46f 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitaddresschangedmessage type: MessagePayload displayName: BusinessUnitAddressChangedMessagePayload discriminatorValue: BusinessUnitAddressChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldAddedMessagePayload.raml index 1316a5a6d0..bf6d4d91ed 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-field-added type: MessagePayload displayName: BusinessUnitAddressCustomFieldAddedMessagePayload discriminatorValue: BusinessUnitAddressCustomFieldAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldChangedMessagePayload.raml index 2536e80d12..62a0e16800 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-field-changed type: MessagePayload displayName: BusinessUnitAddressCustomFieldChangedMessagePayload discriminatorValue: BusinessUnitAddressCustomFieldChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldRemovedMessagePayload.raml index d2ef516ad9..bf1ed4f4b1 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressCustomFieldRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-field-removed type: MessagePayload displayName: BusinessUnitAddressCustomFieldRemovedMessagePayload discriminatorValue: BusinessUnitAddressCustomFieldRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeRemovedMessagePayload.raml index 027fd10642..6541708b27 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-type-removed type: MessagePayload displayName: BusinessUnitAddressCustomTypeRemovedMessagePayload discriminatorValue: BusinessUnitAddressCustomTypeRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeSetMessagePayload.raml index e11271a06a..149a724ecc 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressCustomTypeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-address-custom-type-set type: MessagePayload displayName: BusinessUnitAddressCustomTypeSetMessagePayload discriminatorValue: BusinessUnitAddressCustomTypeSet diff --git a/api-specs/api/types/message/payload/BusinessUnitAddressRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAddressRemovedMessagePayload.raml index c9c872199c..f5755844b3 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAddressRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAddressRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitaddressremovedmessage type: MessagePayload displayName: BusinessUnitAddressRemovedMessagePayload discriminatorValue: BusinessUnitAddressRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitAssociateAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAssociateAddedMessagePayload.raml index e3a09d7a1f..5a7264fc7c 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAssociateAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAssociateAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociateaddedmessage type: MessagePayload displayName: BusinessUnitAssociateAddedMessagePayload discriminatorValue: BusinessUnitAssociateAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitAssociateChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAssociateChangedMessagePayload.raml index 4be693a10a..6bf58e3cf4 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAssociateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAssociateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociatechangedmessage type: MessagePayload displayName: BusinessUnitAssociateChangedMessagePayload discriminatorValue: BusinessUnitAssociateChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitAssociateModeChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAssociateModeChangedMessagePayload.raml index 0930f16370..f6f819eb55 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAssociateModeChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAssociateModeChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociateemodechangedmessage type: MessagePayload displayName: BusinessUnitAssociateModeChangedMessagePayload discriminatorValue: BusinessUnitAssociateModeChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitAssociateRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAssociateRemovedMessagePayload.raml index e30e111a5f..f9ed4c6fa8 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAssociateRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAssociateRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociateremovedmessage type: MessagePayload displayName: BusinessUnitAssociateRemovedMessagePayload discriminatorValue: BusinessUnitAssociateRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitAssociatesSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitAssociatesSetMessagePayload.raml index 6aea792436..31fba29da5 100644 --- a/api-specs/api/types/message/payload/BusinessUnitAssociatesSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitAssociatesSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitassociatessetmessage type: MessagePayload displayName: BusinessUnitAssociatesSetMessagePayload discriminatorValue: BusinessUnitAssociatesSet diff --git a/api-specs/api/types/message/payload/BusinessUnitBillingAddressAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitBillingAddressAddedMessagePayload.raml index 09c2745077..e3a3297709 100644 --- a/api-specs/api/types/message/payload/BusinessUnitBillingAddressAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitBillingAddressAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitbillingaddressaddedmessage type: MessagePayload displayName: BusinessUnitBillingAddressAddedMessagePayload discriminatorValue: BusinessUnitBillingAddressAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitBillingAddressRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitBillingAddressRemovedMessagePayload.raml index 286aca3e9b..72a8a7a9aa 100644 --- a/api-specs/api/types/message/payload/BusinessUnitBillingAddressRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitBillingAddressRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitbillingaddressremovedmessage type: MessagePayload displayName: BusinessUnitBillingAddressRemovedMessagePayload discriminatorValue: BusinessUnitBillingAddressRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitContactEmailSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitContactEmailSetMessagePayload.raml index eb7a84db02..46efdbdcc5 100644 --- a/api-specs/api/types/message/payload/BusinessUnitContactEmailSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitContactEmailSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitcontactemailsetmessage type: MessagePayload displayName: BusinessUnitContactEmailSetMessagePayload discriminatorValue: BusinessUnitContactEmailSet diff --git a/api-specs/api/types/message/payload/BusinessUnitCreatedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitCreatedMessagePayload.raml index 575957f9e7..588a7022d6 100644 --- a/api-specs/api/types/message/payload/BusinessUnitCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#business-unit-created type: MessagePayload displayName: BusinessUnitCreatedMessagePayload discriminatorValue: BusinessUnitCreated diff --git a/api-specs/api/types/message/payload/BusinessUnitCustomFieldAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitCustomFieldAddedMessagePayload.raml index f38a1c36aa..171bf43070 100644 --- a/api-specs/api/types/message/payload/BusinessUnitCustomFieldAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitCustomFieldAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-field-added type: MessagePayload displayName: BusinessUnitCustomFieldAddedMessagePayload discriminatorValue: BusinessUnitCustomFieldAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitCustomFieldChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitCustomFieldChangedMessagePayload.raml index f3965b79a3..c216150bf6 100644 --- a/api-specs/api/types/message/payload/BusinessUnitCustomFieldChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitCustomFieldChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-field-changed type: MessagePayload displayName: BusinessUnitCustomFieldChangedMessagePayload discriminatorValue: BusinessUnitCustomFieldChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitCustomFieldRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitCustomFieldRemovedMessagePayload.raml index 60b06f1bfe..f9bdc6b2ce 100644 --- a/api-specs/api/types/message/payload/BusinessUnitCustomFieldRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitCustomFieldRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-field-removed type: MessagePayload displayName: BusinessUnitCustomFieldRemovedMessagePayload discriminatorValue: BusinessUnitCustomFieldRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitCustomTypeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitCustomTypeRemovedMessagePayload.raml index 4938e522f5..c2c90b2c5f 100644 --- a/api-specs/api/types/message/payload/BusinessUnitCustomTypeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitCustomTypeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-type-removed type: MessagePayload displayName: BusinessUnitCustomTypeRemovedMessagePayload discriminatorValue: BusinessUnitCustomTypeRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitCustomTypeSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitCustomTypeSetMessagePayload.raml index b6463d7155..85f290356c 100644 --- a/api-specs/api/types/message/payload/BusinessUnitCustomTypeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitCustomTypeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#business-unit-custom-type-set type: MessagePayload displayName: BusinessUnitCustomTypeSetMessagePayload discriminatorValue: BusinessUnitCustomTypeSet diff --git a/api-specs/api/types/message/payload/BusinessUnitDefaultBillingAddressSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitDefaultBillingAddressSetMessagePayload.raml index e66ef0e0f8..ef47e3d004 100644 --- a/api-specs/api/types/message/payload/BusinessUnitDefaultBillingAddressSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitDefaultBillingAddressSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitdefaultbillingaddresssetmessage type: MessagePayload displayName: BusinessUnitDefaultBillingAddressSetMessagePayload discriminatorValue: BusinessUnitDefaultBillingAddressSet diff --git a/api-specs/api/types/message/payload/BusinessUnitDefaultShippingAddressSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitDefaultShippingAddressSetMessagePayload.raml index 13b5285deb..9fa6227fac 100644 --- a/api-specs/api/types/message/payload/BusinessUnitDefaultShippingAddressSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitDefaultShippingAddressSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitdefaultshippingaddresssetmessage type: MessagePayload displayName: BusinessUnitDefaultShippingAddressSetMessagePayload discriminatorValue: BusinessUnitDefaultShippingAddressSet diff --git a/api-specs/api/types/message/payload/BusinessUnitNameChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitNameChangedMessagePayload.raml index ed66ea4066..aa303d4531 100644 --- a/api-specs/api/types/message/payload/BusinessUnitNameChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitNameChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitnamechangedmessage type: MessagePayload displayName: BusinessUnitNameChangedMessagePayload discriminatorValue: BusinessUnitNameChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitParentChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitParentChangedMessagePayload.raml index 7ee46ee2e4..bbeafa3f99 100644 --- a/api-specs/api/types/message/payload/BusinessUnitParentChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitParentChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitparentchangedmessage type: MessagePayload displayName: BusinessUnitParentChangedMessagePayload discriminatorValue: BusinessUnitParentChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitShippingAddressAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitShippingAddressAddedMessagePayload.raml index ea4c90c3fc..208e30a451 100644 --- a/api-specs/api/types/message/payload/BusinessUnitShippingAddressAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitShippingAddressAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitshippingaddressaddedmessage type: MessagePayload displayName: BusinessUnitShippingAddressAddedMessagePayload discriminatorValue: BusinessUnitShippingAddressAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitShippingAddressRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitShippingAddressRemovedMessagePayload.raml index 15a7e2330f..156a7505ba 100644 --- a/api-specs/api/types/message/payload/BusinessUnitShippingAddressRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitShippingAddressRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitshippingaddressremovedmessage type: MessagePayload displayName: BusinessUnitShippingAddressRemovedMessagePayload discriminatorValue: BusinessUnitShippingAddressRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitStatusChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitStatusChangedMessagePayload.raml index 7112e3e264..78524ec8f2 100644 --- a/api-specs/api/types/message/payload/BusinessUnitStatusChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitStatusChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstatuschangedmessage type: MessagePayload displayName: BusinessUnitStatusChangedMessagePayload discriminatorValue: BusinessUnitStatusChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitStoreAddedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitStoreAddedMessagePayload.raml index 7fdc38bb9e..5d1ff86a28 100644 --- a/api-specs/api/types/message/payload/BusinessUnitStoreAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitStoreAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoreaddedmessage type: MessagePayload displayName: BusinessUnitStoreAddedMessagePayload discriminatorValue: BusinessUnitStoreAdded diff --git a/api-specs/api/types/message/payload/BusinessUnitStoreModeChangedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitStoreModeChangedMessagePayload.raml index 3d396c88c1..7dae2bf158 100644 --- a/api-specs/api/types/message/payload/BusinessUnitStoreModeChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitStoreModeChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoremodechangedmessage type: MessagePayload displayName: BusinessUnitStoreModeChangedMessagePayload discriminatorValue: BusinessUnitStoreModeChanged diff --git a/api-specs/api/types/message/payload/BusinessUnitStoreRemovedMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitStoreRemovedMessagePayload.raml index e465d40187..2a6906a4c3 100644 --- a/api-specs/api/types/message/payload/BusinessUnitStoreRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitStoreRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoreremovedmessage type: MessagePayload displayName: BusinessUnitStoreRemovedMessagePayload discriminatorValue: BusinessUnitStoreRemoved diff --git a/api-specs/api/types/message/payload/BusinessUnitStoresSetMessagePayload.raml b/api-specs/api/types/message/payload/BusinessUnitStoresSetMessagePayload.raml index f3a2620f66..0a78d9cdd0 100644 --- a/api-specs/api/types/message/payload/BusinessUnitStoresSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/BusinessUnitStoresSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#businessunitstoressetmessage type: MessagePayload displayName: BusinessUnitStoresSetMessagePayload discriminatorValue: BusinessUnitStoresSet diff --git a/api-specs/api/types/message/payload/CartDiscountCreatedMessagePayload.raml b/api-specs/api/types/message/payload/CartDiscountCreatedMessagePayload.raml index ac0911df05..fb79c9bbda 100644 --- a/api-specs/api/types/message/payload/CartDiscountCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CartDiscountCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-created type: MessagePayload displayName: CartDiscountCreatedMessagePayload discriminatorValue: CartDiscountCreated diff --git a/api-specs/api/types/message/payload/CartDiscountDeletedMessagePayload.raml b/api-specs/api/types/message/payload/CartDiscountDeletedMessagePayload.raml index 4348293e3f..fec3689802 100644 --- a/api-specs/api/types/message/payload/CartDiscountDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CartDiscountDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-deleted type: MessagePayload displayName: CartDiscountDeletedMessagePayload discriminatorValue: CartDiscountDeleted diff --git a/api-specs/api/types/message/payload/CartDiscountStoreAddedMessagePayload.raml b/api-specs/api/types/message/payload/CartDiscountStoreAddedMessagePayload.raml index 159c1e808c..9f3574b36f 100644 --- a/api-specs/api/types/message/payload/CartDiscountStoreAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CartDiscountStoreAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-store-added type: MessagePayload displayName: CartDiscountStoreAddedMessagePayload discriminatorValue: CartDiscountStoreAdded diff --git a/api-specs/api/types/message/payload/CartDiscountStoreRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CartDiscountStoreRemovedMessagePayload.raml index c36776a0c8..706469599f 100644 --- a/api-specs/api/types/message/payload/CartDiscountStoreRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CartDiscountStoreRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-store-removed type: MessagePayload displayName: CartDiscountStoreRemovedMessagePayload discriminatorValue: CartDiscountStoreRemoved diff --git a/api-specs/api/types/message/payload/CartDiscountStoresSetMessagePayload.raml b/api-specs/api/types/message/payload/CartDiscountStoresSetMessagePayload.raml index ac463c040e..31011a475b 100644 --- a/api-specs/api/types/message/payload/CartDiscountStoresSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CartDiscountStoresSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#cart-discount-stores-set type: MessagePayload displayName: CartDiscountStoresSetMessagePayload discriminatorValue: CartDiscountStoresSet diff --git a/api-specs/api/types/message/payload/CategoryCreatedMessagePayload.raml b/api-specs/api/types/message/payload/CategoryCreatedMessagePayload.raml index bbeb101fe1..0473ff9965 100644 --- a/api-specs/api/types/message/payload/CategoryCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CategoryCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#category-created type: MessagePayload displayName: CategoryCreatedMessagePayload discriminatorValue: CategoryCreated diff --git a/api-specs/api/types/message/payload/CategorySlugChangedMessagePayload.raml b/api-specs/api/types/message/payload/CategorySlugChangedMessagePayload.raml index 671dcc5e43..0aaacd8683 100644 --- a/api-specs/api/types/message/payload/CategorySlugChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CategorySlugChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#category-slug-changed type: MessagePayload displayName: CategorySlugChangedMessagePayload discriminatorValue: CategorySlugChanged diff --git a/api-specs/api/types/message/payload/CustomLineItemStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/CustomLineItemStateTransitionMessagePayload.raml index 5bfba14264..73d9d4c9f7 100644 --- a/api-specs/api/types/message/payload/CustomLineItemStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomLineItemStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#custom-line-item-state-transition type: OrderMessagePayload displayName: CustomLineItemStateTransitionMessagePayload discriminatorValue: CustomLineItemStateTransition @@ -18,7 +17,7 @@ properties: transitionDate: type: datetime description: | - Date and time (UTC) when the transition of the [Custom Line Item](ctp:api:type:CustomLineItem) [State](ctp:api:type:State) was performed. + Date and time (UTC) the transition of the [Custom Line Item](ctp:api:type:CustomLineItem) [State](ctp:api:type:State) was performed. quantity: type: number format: int64 diff --git a/api-specs/api/types/message/payload/CustomerAddressAddedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressAddedMessagePayload.raml index d4162bce45..077c734a02 100644 --- a/api-specs/api/types/message/payload/CustomerAddressAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-address-added type: MessagePayload displayName: CustomerAddressAddedMessagePayload discriminatorValue: CustomerAddressAdded diff --git a/api-specs/api/types/message/payload/CustomerAddressChangedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressChangedMessagePayload.raml index 3198d76dce..16a72189b5 100644 --- a/api-specs/api/types/message/payload/CustomerAddressChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-address-changed type: MessagePayload displayName: CustomerAddressChangedMessagePayload discriminatorValue: CustomerAddressChanged diff --git a/api-specs/api/types/message/payload/CustomerAddressCustomFieldAddedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressCustomFieldAddedMessagePayload.raml index 9a93f08d1a..b292fea012 100644 --- a/api-specs/api/types/message/payload/CustomerAddressCustomFieldAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressCustomFieldAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-field-added type: MessagePayload displayName: CustomerAddressCustomFieldAddedMessagePayload discriminatorValue: CustomerAddressCustomFieldAdded diff --git a/api-specs/api/types/message/payload/CustomerAddressCustomFieldChangedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressCustomFieldChangedMessagePayload.raml index cb350337e1..29de751f1b 100644 --- a/api-specs/api/types/message/payload/CustomerAddressCustomFieldChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressCustomFieldChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-field-changed type: MessagePayload displayName: CustomerAddressCustomFieldChangedMessagePayload discriminatorValue: CustomerAddressCustomFieldChanged diff --git a/api-specs/api/types/message/payload/CustomerAddressCustomFieldRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressCustomFieldRemovedMessagePayload.raml index 04ed4b0619..6ce87affd3 100644 --- a/api-specs/api/types/message/payload/CustomerAddressCustomFieldRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressCustomFieldRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-field-removed type: MessagePayload displayName: CustomerAddressCustomFieldRemovedMessagePayload discriminatorValue: CustomerAddressCustomFieldRemoved diff --git a/api-specs/api/types/message/payload/CustomerAddressCustomTypeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressCustomTypeRemovedMessagePayload.raml index 78342f733d..e07488a011 100644 --- a/api-specs/api/types/message/payload/CustomerAddressCustomTypeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressCustomTypeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-type-removed type: MessagePayload displayName: CustomerAddressCustomTypeRemovedMessagePayload discriminatorValue: CustomerAddressCustomTypeRemoved diff --git a/api-specs/api/types/message/payload/CustomerAddressCustomTypeSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressCustomTypeSetMessagePayload.raml index 8165ce87cc..b9b24b9488 100644 --- a/api-specs/api/types/message/payload/CustomerAddressCustomTypeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressCustomTypeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-address-custom-type-set type: MessagePayload displayName: CustomerAddressCustomTypeSetMessagePayload discriminatorValue: CustomerAddressCustomTypeSet diff --git a/api-specs/api/types/message/payload/CustomerAddressRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerAddressRemovedMessagePayload.raml index 063160cde5..6019397c4f 100644 --- a/api-specs/api/types/message/payload/CustomerAddressRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerAddressRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-address-removed type: MessagePayload displayName: CustomerAddressRemovedMessagePayload discriminatorValue: CustomerAddressRemoved diff --git a/api-specs/api/types/message/payload/CustomerCompanyNameSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCompanyNameSetMessagePayload.raml index 36a8369bbf..8307a3ed70 100644 --- a/api-specs/api/types/message/payload/CustomerCompanyNameSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCompanyNameSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-company-name-set type: MessagePayload displayName: CustomerCompanyNameSetMessagePayload discriminatorValue: CustomerCompanyNameSet diff --git a/api-specs/api/types/message/payload/CustomerCreatedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCreatedMessagePayload.raml index e0aacd25ee..a351c2f8fc 100644 --- a/api-specs/api/types/message/payload/CustomerCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-created type: MessagePayload displayName: CustomerCreatedMessagePayload discriminatorValue: CustomerCreated diff --git a/api-specs/api/types/message/payload/CustomerCustomFieldAddedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCustomFieldAddedMessagePayload.raml index debf60895a..06bd74789e 100644 --- a/api-specs/api/types/message/payload/CustomerCustomFieldAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCustomFieldAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-field-added type: MessagePayload displayName: CustomerCustomFieldAddedMessagePayload discriminatorValue: CustomerCustomFieldAdded diff --git a/api-specs/api/types/message/payload/CustomerCustomFieldChangedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCustomFieldChangedMessagePayload.raml index c60b6c75c1..2b449eb2b3 100644 --- a/api-specs/api/types/message/payload/CustomerCustomFieldChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCustomFieldChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-field-changed type: MessagePayload displayName: CustomerCustomFieldChangedMessagePayload discriminatorValue: CustomerCustomFieldChanged diff --git a/api-specs/api/types/message/payload/CustomerCustomFieldRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCustomFieldRemovedMessagePayload.raml index dbf88426b8..ac76a123c6 100644 --- a/api-specs/api/types/message/payload/CustomerCustomFieldRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCustomFieldRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-field-removed type: MessagePayload displayName: CustomerCustomFieldRemovedMessagePayload discriminatorValue: CustomerCustomFieldRemoved diff --git a/api-specs/api/types/message/payload/CustomerCustomTypeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCustomTypeRemovedMessagePayload.raml index 4aa20c9011..be55ba8bbc 100644 --- a/api-specs/api/types/message/payload/CustomerCustomTypeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCustomTypeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-type-removed type: MessagePayload displayName: CustomerCustomTypeRemovedMessagePayload discriminatorValue: CustomerCustomTypeRemoved diff --git a/api-specs/api/types/message/payload/CustomerCustomTypeSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerCustomTypeSetMessagePayload.raml index d0cbd6658a..b95cd7ff23 100644 --- a/api-specs/api/types/message/payload/CustomerCustomTypeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerCustomTypeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-custom-type-set type: MessagePayload displayName: CustomerCustomTypeSetMessagePayload discriminatorValue: CustomerCustomTypeSet diff --git a/api-specs/api/types/message/payload/CustomerDateOfBirthSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerDateOfBirthSetMessagePayload.raml index 343280b195..f3ba8fda06 100644 --- a/api-specs/api/types/message/payload/CustomerDateOfBirthSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerDateOfBirthSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-date-of-birth-set type: MessagePayload displayName: CustomerDateOfBirthSetMessagePayload discriminatorValue: CustomerDateOfBirthSet diff --git a/api-specs/api/types/message/payload/CustomerDeletedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerDeletedMessagePayload.raml index d005381bd3..1df5c1d7f5 100644 --- a/api-specs/api/types/message/payload/CustomerDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-deleted type: MessagePayload displayName: CustomerDeletedMessagePayload discriminatorValue: CustomerDeleted diff --git a/api-specs/api/types/message/payload/CustomerEmailChangedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerEmailChangedMessagePayload.raml index 15a8a5afeb..a23a13a5b7 100644 --- a/api-specs/api/types/message/payload/CustomerEmailChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerEmailChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-email-changed type: MessagePayload displayName: CustomerEmailChangedMessagePayload discriminatorValue: CustomerEmailChanged diff --git a/api-specs/api/types/message/payload/CustomerEmailTokenCreatedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerEmailTokenCreatedMessagePayload.raml index 619288b7d1..1d48eecc7f 100644 --- a/api-specs/api/types/message/payload/CustomerEmailTokenCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerEmailTokenCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customeremailtoken-created type: MessagePayload displayName: CustomerEmailTokenCreatedMessagePayload discriminatorValue: CustomerEmailTokenCreated diff --git a/api-specs/api/types/message/payload/CustomerEmailVerifiedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerEmailVerifiedMessagePayload.raml index 5e7be8279b..60cce09ce9 100644 --- a/api-specs/api/types/message/payload/CustomerEmailVerifiedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerEmailVerifiedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-email-verified type: MessagePayload displayName: CustomerEmailVerifiedMessagePayload discriminatorValue: CustomerEmailVerified diff --git a/api-specs/api/types/message/payload/CustomerFirstNameSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerFirstNameSetMessagePayload.raml index 5158518de4..a1e2b9cde2 100644 --- a/api-specs/api/types/message/payload/CustomerFirstNameSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerFirstNameSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-first-name-set type: MessagePayload displayName: CustomerFirstNameSetMessagePayload discriminatorValue: CustomerFirstNameSet diff --git a/api-specs/api/types/message/payload/CustomerGroupCustomFieldAddedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerGroupCustomFieldAddedMessagePayload.raml index ba9327dede..874ae232bf 100644 --- a/api-specs/api/types/message/payload/CustomerGroupCustomFieldAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerGroupCustomFieldAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-field-added type: MessagePayload displayName: CustomerGroupCustomFieldAddedMessagePayload discriminatorValue: CustomerGroupCustomFieldAdded diff --git a/api-specs/api/types/message/payload/CustomerGroupCustomFieldChangedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerGroupCustomFieldChangedMessagePayload.raml index a8c2972158..198e9b0226 100644 --- a/api-specs/api/types/message/payload/CustomerGroupCustomFieldChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerGroupCustomFieldChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-field-changed type: MessagePayload displayName: CustomerGroupCustomFieldChangedMessagePayload discriminatorValue: CustomerGroupCustomFieldChanged diff --git a/api-specs/api/types/message/payload/CustomerGroupCustomFieldRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerGroupCustomFieldRemovedMessagePayload.raml index 951f292751..264b774529 100644 --- a/api-specs/api/types/message/payload/CustomerGroupCustomFieldRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerGroupCustomFieldRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-field-removed type: MessagePayload displayName: CustomerGroupCustomFieldRemovedMessagePayload discriminatorValue: CustomerGroupCustomFieldRemoved diff --git a/api-specs/api/types/message/payload/CustomerGroupCustomTypeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerGroupCustomTypeRemovedMessagePayload.raml index 3f74c664ec..8e8b8c9bbd 100644 --- a/api-specs/api/types/message/payload/CustomerGroupCustomTypeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerGroupCustomTypeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-type-removed type: MessagePayload displayName: CustomerGroupCustomTypeRemovedMessagePayload discriminatorValue: CustomerGroupCustomTypeRemoved diff --git a/api-specs/api/types/message/payload/CustomerGroupCustomTypeSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerGroupCustomTypeSetMessagePayload.raml index a31aedd7fe..794797525b 100644 --- a/api-specs/api/types/message/payload/CustomerGroupCustomTypeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerGroupCustomTypeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#customer-group-custom-type-set type: MessagePayload displayName: CustomerGroupCustomTypeSetMessagePayload discriminatorValue: CustomerGroupCustomTypeSet diff --git a/api-specs/api/types/message/payload/CustomerGroupSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerGroupSetMessagePayload.raml index a19d67bae5..45cfbfc90c 100644 --- a/api-specs/api/types/message/payload/CustomerGroupSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerGroupSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-group-set type: MessagePayload displayName: CustomerGroupSetMessagePayload discriminatorValue: CustomerGroupSet diff --git a/api-specs/api/types/message/payload/CustomerLastNameSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerLastNameSetMessagePayload.raml index 74c2a564f8..42ce414f2d 100644 --- a/api-specs/api/types/message/payload/CustomerLastNameSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerLastNameSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-last-name-set type: MessagePayload displayName: CustomerLastNameSetMessagePayload discriminatorValue: CustomerLastNameSet diff --git a/api-specs/api/types/message/payload/CustomerPasswordTokenCreatedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerPasswordTokenCreatedMessagePayload.raml index ff790501c9..74dc6fec18 100644 --- a/api-specs/api/types/message/payload/CustomerPasswordTokenCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerPasswordTokenCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customerpasswordtoken-created type: MessagePayload displayName: CustomerPasswordTokenCreatedMessagePayload discriminatorValue: CustomerPasswordTokenCreated diff --git a/api-specs/api/types/message/payload/CustomerPasswordUpdatedMessagePayload.raml b/api-specs/api/types/message/payload/CustomerPasswordUpdatedMessagePayload.raml index b3defa9e4f..450baddd74 100644 --- a/api-specs/api/types/message/payload/CustomerPasswordUpdatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerPasswordUpdatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-password-updated type: MessagePayload displayName: CustomerPasswordUpdatedMessagePayload discriminatorValue: CustomerPasswordUpdated diff --git a/api-specs/api/types/message/payload/CustomerTitleSetMessagePayload.raml b/api-specs/api/types/message/payload/CustomerTitleSetMessagePayload.raml index 3fca6e607e..eed9b82eb0 100644 --- a/api-specs/api/types/message/payload/CustomerTitleSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/CustomerTitleSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#customer-title-set type: MessagePayload displayName: CustomerTitleSetMessagePayload discriminatorValue: CustomerTitleSet diff --git a/api-specs/api/types/message/payload/DeliveryAddedMessagePayload.raml b/api-specs/api/types/message/payload/DeliveryAddedMessagePayload.raml index fa35d4c985..337d39d4f4 100644 --- a/api-specs/api/types/message/payload/DeliveryAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/DeliveryAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-added type: OrderMessagePayload displayName: DeliveryAddedMessagePayload discriminatorValue: DeliveryAdded diff --git a/api-specs/api/types/message/payload/DeliveryAddressSetMessagePayload.raml b/api-specs/api/types/message/payload/DeliveryAddressSetMessagePayload.raml index 3743c6adb8..6dac6a8714 100644 --- a/api-specs/api/types/message/payload/DeliveryAddressSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/DeliveryAddressSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-address-set type: OrderMessagePayload displayName: DeliveryAddressSetMessagePayload discriminatorValue: DeliveryAddressSet diff --git a/api-specs/api/types/message/payload/DeliveryItemsUpdatedMessagePayload.raml b/api-specs/api/types/message/payload/DeliveryItemsUpdatedMessagePayload.raml index 66440e294f..c1335601f8 100644 --- a/api-specs/api/types/message/payload/DeliveryItemsUpdatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/DeliveryItemsUpdatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-items-updated type: OrderMessagePayload displayName: DeliveryItemsUpdatedMessagePayload discriminatorValue: DeliveryItemsUpdated diff --git a/api-specs/api/types/message/payload/DeliveryRemovedMessagePayload.raml b/api-specs/api/types/message/payload/DeliveryRemovedMessagePayload.raml index a8cd47f4b9..56cd8ca979 100644 --- a/api-specs/api/types/message/payload/DeliveryRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/DeliveryRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#delivery-removed type: OrderMessagePayload displayName: DeliveryRemovedMessagePayload discriminatorValue: DeliveryRemoved diff --git a/api-specs/api/types/message/payload/DiscountCodeCreatedMessagePayload.raml b/api-specs/api/types/message/payload/DiscountCodeCreatedMessagePayload.raml new file mode 100644 index 0000000000..f23db6f97a --- /dev/null +++ b/api-specs/api/types/message/payload/DiscountCodeCreatedMessagePayload.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +displayName: DiscountCodeCreatedMessagePayload +discriminatorValue: DiscountCodeCreated +description: | + Generated after a successful [Create DiscountCode](ctp:api:endpoint:/{projectKey}/discount-codes:POST) request. +properties: + discountCode: + type: DiscountCode + description: | + The [Discount Code](ctp:api:type:DiscountCode) that was created. diff --git a/api-specs/api/types/message/payload/DiscountCodeDeletedMessagePayload.raml b/api-specs/api/types/message/payload/DiscountCodeDeletedMessagePayload.raml new file mode 100644 index 0000000000..03b9ec51f3 --- /dev/null +++ b/api-specs/api/types/message/payload/DiscountCodeDeletedMessagePayload.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +displayName: DiscountCodeDeletedMessagePayload +discriminatorValue: DiscountCodeDeleted +description: | + Generated after a successful [Delete DiscountCode](ctp:api:endpoint:/{projectKey}/discount-codes/{id}:DELETE) request. +properties: diff --git a/api-specs/api/types/message/payload/DiscountCodeKeySetMessagePayload.raml b/api-specs/api/types/message/payload/DiscountCodeKeySetMessagePayload.raml new file mode 100644 index 0000000000..26089c45b8 --- /dev/null +++ b/api-specs/api/types/message/payload/DiscountCodeKeySetMessagePayload.raml @@ -0,0 +1,22 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +displayName: DiscountCodeKeySetMessagePayload +discriminatorValue: DiscountCodeKeySet +description: | + Generated after a successful [Set Key](ctp:api:type:DiscountCodeSetKeyAction) update action. +properties: + key?: + type: string + description: | + `key` value of the [Discount Code](ctp:api:type:DiscountCode) after the [Set Key](ctp:api:type:DiscountCodeSetKeyAction) update action. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 + oldKey?: + type: string + description: | + `key` value of the [Discount Code](ctp:api:type:DiscountCode) before the [Set Key](ctp:api:type:DiscountCodeSetKeyAction) update action. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 2 + maxLength: 256 diff --git a/api-specs/api/types/message/payload/InventoryEntryCreatedMessagePayload.raml b/api-specs/api/types/message/payload/InventoryEntryCreatedMessagePayload.raml index b7e930fc7c..cccd41dfeb 100644 --- a/api-specs/api/types/message/payload/InventoryEntryCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/InventoryEntryCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#inventoryentry-created type: MessagePayload displayName: InventoryEntryCreatedMessagePayload discriminatorValue: InventoryEntryCreated diff --git a/api-specs/api/types/message/payload/InventoryEntryDeletedMessagePayload.raml b/api-specs/api/types/message/payload/InventoryEntryDeletedMessagePayload.raml index 033c1be991..3f7ba4045d 100644 --- a/api-specs/api/types/message/payload/InventoryEntryDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/InventoryEntryDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#inventoryentry-deleted type: MessagePayload displayName: InventoryEntryDeletedMessagePayload discriminatorValue: InventoryEntryDeleted diff --git a/api-specs/api/types/message/payload/InventoryEntryQuantitySetMessagePayload.raml b/api-specs/api/types/message/payload/InventoryEntryQuantitySetMessagePayload.raml index d225f9c079..5497380da7 100644 --- a/api-specs/api/types/message/payload/InventoryEntryQuantitySetMessagePayload.raml +++ b/api-specs/api/types/message/payload/InventoryEntryQuantitySetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#inventoryentry-quantity-set type: MessagePayload displayName: InventoryEntryQuantitySetMessagePayload discriminatorValue: InventoryEntryQuantitySet diff --git a/api-specs/api/types/message/payload/LineItemStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/LineItemStateTransitionMessagePayload.raml index bd06808d59..c0495bcfbe 100644 --- a/api-specs/api/types/message/payload/LineItemStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/LineItemStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#line-item-state-transition type: OrderMessagePayload displayName: LineItemStateTransitionMessagePayload discriminatorValue: LineItemStateTransition @@ -18,7 +17,7 @@ properties: transitionDate: type: datetime description: | - Date and time (UTC) when the transition of the [Line Item](ctp:api:type:LineItem) [State](ctp:api:type:State) was performed. + Date and time (UTC) the transition of the [Line Item](ctp:api:type:LineItem) [State](ctp:api:type:State) was performed. quantity: type: number format: int64 diff --git a/api-specs/api/types/message/payload/OrderBillingAddressSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderBillingAddressSetMessagePayload.raml index 99de9a0735..d274e2484d 100644 --- a/api-specs/api/types/message/payload/OrderBillingAddressSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderBillingAddressSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-billing-address-set type: OrderMessagePayload displayName: OrderBillingAddressSetMessagePayload discriminatorValue: OrderBillingAddressSet diff --git a/api-specs/api/types/message/payload/OrderCreatedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCreatedMessagePayload.raml index 639ed02dbe..34e08df4b2 100644 --- a/api-specs/api/types/message/payload/OrderCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-created type: OrderMessagePayload displayName: OrderCreatedMessagePayload discriminatorValue: OrderCreated diff --git a/api-specs/api/types/message/payload/OrderCustomFieldAddedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomFieldAddedMessagePayload.raml index 3fa4cb18ee..dc15546aba 100644 --- a/api-specs/api/types/message/payload/OrderCustomFieldAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomFieldAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-custom-field-added type: OrderMessagePayload displayName: OrderCustomFieldAddedMessagePayload discriminatorValue: OrderCustomFieldAdded diff --git a/api-specs/api/types/message/payload/OrderCustomFieldChangedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomFieldChangedMessagePayload.raml index 7dd05fe1cc..0e11583d5f 100644 --- a/api-specs/api/types/message/payload/OrderCustomFieldChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomFieldChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-custom-field-changed type: OrderMessagePayload displayName: OrderCustomFieldChangedMessagePayload discriminatorValue: OrderCustomFieldChanged diff --git a/api-specs/api/types/message/payload/OrderCustomFieldRemovedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomFieldRemovedMessagePayload.raml index 9083a9d6e3..9fe97f3729 100644 --- a/api-specs/api/types/message/payload/OrderCustomFieldRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomFieldRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-custom-field-removed type: OrderMessagePayload displayName: OrderCustomFieldRemovedMessagePayload discriminatorValue: OrderCustomFieldRemoved diff --git a/api-specs/api/types/message/payload/OrderCustomLineItemAddedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomLineItemAddedMessagePayload.raml index a3a7706268..47de7f46a4 100644 --- a/api-specs/api/types/message/payload/OrderCustomLineItemAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomLineItemAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-added type: OrderMessagePayload displayName: OrderCustomLineItemAddedMessagePayload discriminatorValue: OrderCustomLineItemAdded diff --git a/api-specs/api/types/message/payload/OrderCustomLineItemDiscountSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomLineItemDiscountSetMessagePayload.raml index 09d3945ba0..0cded148a1 100644 --- a/api-specs/api/types/message/payload/OrderCustomLineItemDiscountSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomLineItemDiscountSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-discount-set type: OrderMessagePayload displayName: OrderCustomLineItemDiscountSetMessagePayload discriminatorValue: OrderCustomLineItemDiscountSet diff --git a/api-specs/api/types/message/payload/OrderCustomLineItemQuantityChangedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomLineItemQuantityChangedMessagePayload.raml index cbba5660a6..ac2de71ad4 100644 --- a/api-specs/api/types/message/payload/OrderCustomLineItemQuantityChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomLineItemQuantityChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-quantity-changed type: OrderMessagePayload displayName: OrderCustomLineItemQuantityChangedMessagePayload discriminatorValue: OrderCustomLineItemQuantityChanged diff --git a/api-specs/api/types/message/payload/OrderCustomLineItemRemovedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomLineItemRemovedMessagePayload.raml index 06683d4b6e..90f0e9e42d 100644 --- a/api-specs/api/types/message/payload/OrderCustomLineItemRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomLineItemRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-line-item-removed type: OrderMessagePayload displayName: OrderCustomLineItemRemovedMessagePayload discriminatorValue: OrderCustomLineItemRemoved diff --git a/api-specs/api/types/message/payload/OrderCustomTypeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomTypeRemovedMessagePayload.raml index 1b02b12ebd..3132c6178b 100644 --- a/api-specs/api/types/message/payload/OrderCustomTypeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomTypeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-type-removed type: OrderMessagePayload displayName: OrderCustomTypeRemovedMessagePayload discriminatorValue: OrderCustomTypeRemoved diff --git a/api-specs/api/types/message/payload/OrderCustomTypeSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomTypeSetMessagePayload.raml index 31d102db3f..bfb6977b85 100644 --- a/api-specs/api/types/message/payload/OrderCustomTypeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomTypeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-custom-type-set type: OrderMessagePayload displayName: OrderCustomTypeSetMessagePayload discriminatorValue: OrderCustomTypeSet diff --git a/api-specs/api/types/message/payload/OrderCustomerEmailSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomerEmailSetMessagePayload.raml index 3d56e666b7..6fbfcef8bc 100644 --- a/api-specs/api/types/message/payload/OrderCustomerEmailSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomerEmailSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-customer-email-set type: OrderMessagePayload displayName: OrderCustomerEmailSetMessagePayload discriminatorValue: OrderCustomerEmailSet diff --git a/api-specs/api/types/message/payload/OrderCustomerGroupSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomerGroupSetMessagePayload.raml index 317eafd230..183a9ed11b 100644 --- a/api-specs/api/types/message/payload/OrderCustomerGroupSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomerGroupSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-customer-group-set type: OrderMessagePayload displayName: OrderCustomerGroupSetMessagePayload discriminatorValue: OrderCustomerGroupSet diff --git a/api-specs/api/types/message/payload/OrderCustomerSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderCustomerSetMessagePayload.raml index a628501997..f15777cb6f 100644 --- a/api-specs/api/types/message/payload/OrderCustomerSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderCustomerSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-customer-email-set type: OrderMessagePayload displayName: OrderCustomerSetMessagePayload discriminatorValue: OrderCustomerSet diff --git a/api-specs/api/types/message/payload/OrderDeletedMessagePayload.raml b/api-specs/api/types/message/payload/OrderDeletedMessagePayload.raml index 8ef0e58bd6..70ac4bbb3f 100644 --- a/api-specs/api/types/message/payload/OrderDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-deleted type: OrderMessagePayload displayName: OrderDeletedMessagePayload discriminatorValue: OrderDeleted diff --git a/api-specs/api/types/message/payload/OrderDiscountCodeAddedMessagePayload.raml b/api-specs/api/types/message/payload/OrderDiscountCodeAddedMessagePayload.raml index 31672180d1..cc53bb0197 100644 --- a/api-specs/api/types/message/payload/OrderDiscountCodeAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderDiscountCodeAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-discount-code-added type: OrderMessagePayload displayName: OrderDiscountCodeAddedMessagePayload discriminatorValue: OrderDiscountCodeAdded diff --git a/api-specs/api/types/message/payload/OrderDiscountCodeRemovedMessagePayload.raml b/api-specs/api/types/message/payload/OrderDiscountCodeRemovedMessagePayload.raml index 5beb4a4434..78ceb69004 100644 --- a/api-specs/api/types/message/payload/OrderDiscountCodeRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderDiscountCodeRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-discount-code-removed type: OrderMessagePayload displayName: OrderDiscountCodeRemovedMessagePayload discriminatorValue: OrderDiscountCodeRemoved diff --git a/api-specs/api/types/message/payload/OrderDiscountCodeStateSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderDiscountCodeStateSetMessagePayload.raml index 255c85828b..4e448e6718 100644 --- a/api-specs/api/types/message/payload/OrderDiscountCodeStateSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderDiscountCodeStateSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-discount-code-state-set type: OrderMessagePayload displayName: OrderDiscountCodeStateSetMessagePayload discriminatorValue: OrderDiscountCodeStateSet diff --git a/api-specs/api/types/message/payload/OrderEditAppliedMessagePayload.raml b/api-specs/api/types/message/payload/OrderEditAppliedMessagePayload.raml index 3fc5785d32..a2ed756f49 100644 --- a/api-specs/api/types/message/payload/OrderEditAppliedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderEditAppliedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-created type: OrderMessagePayload displayName: OrderEditAppliedMessagePayload discriminatorValue: OrderEditApplied diff --git a/api-specs/api/types/message/payload/OrderImportedMessagePayload.raml b/api-specs/api/types/message/payload/OrderImportedMessagePayload.raml index 01a891c1d4..139328d223 100644 --- a/api-specs/api/types/message/payload/OrderImportedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderImportedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-imported type: OrderMessagePayload displayName: OrderImportedMessagePayload discriminatorValue: OrderImported diff --git a/api-specs/api/types/message/payload/OrderLineItemAddedMessagePayload.raml b/api-specs/api/types/message/payload/OrderLineItemAddedMessagePayload.raml index cd6ef2c775..36a36e4257 100644 --- a/api-specs/api/types/message/payload/OrderLineItemAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderLineItemAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-line-item-added type: OrderMessagePayload displayName: OrderLineItemAddedMessagePayload discriminatorValue: OrderLineItemAdded diff --git a/api-specs/api/types/message/payload/OrderLineItemDiscountSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderLineItemDiscountSetMessagePayload.raml index 7af7fb8547..2ea5724347 100644 --- a/api-specs/api/types/message/payload/OrderLineItemDiscountSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderLineItemDiscountSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-line-item-discount-set type: OrderMessagePayload displayName: OrderLineItemDiscountSetMessagePayload discriminatorValue: OrderLineItemDiscountSet @@ -30,4 +29,5 @@ properties: taxedPricePortions: type: MethodTaxedPrice[] description: | - Taxed price of the Shipping Methods in a Cart with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + Total taxed prices based on the quantity of Line Item assigned to each [Shipping Method](ctp:api:type:ShippingMethod). Only applicable for Carts with `Multiple` [ShippingMode](ctp:api:type:ShippingMode). + Automatically set after `perMethodTaxRate` is set. diff --git a/api-specs/api/types/message/payload/OrderLineItemDistributionChannelSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderLineItemDistributionChannelSetMessagePayload.raml index ae39b57d7c..41bbfa9e78 100644 --- a/api-specs/api/types/message/payload/OrderLineItemDistributionChannelSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderLineItemDistributionChannelSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#orderlineitemdistributionchannelset type: OrderMessagePayload displayName: OrderLineItemDistributionChannelSetMessagePayload discriminatorValue: OrderLineItemDistributionChannelSet diff --git a/api-specs/api/types/message/payload/OrderLineItemRemovedMessagePayload.raml b/api-specs/api/types/message/payload/OrderLineItemRemovedMessagePayload.raml index ce782ebfe2..fe137e544f 100644 --- a/api-specs/api/types/message/payload/OrderLineItemRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderLineItemRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-line-item-removed type: OrderMessagePayload displayName: OrderLineItemRemovedMessagePayload discriminatorValue: OrderLineItemRemoved diff --git a/api-specs/api/types/message/payload/OrderMessagePayload.raml b/api-specs/api/types/message/payload/OrderMessagePayload.raml index 932bc91b24..ee119a7eb8 100644 --- a/api-specs/api/types/message/payload/OrderMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderMessagePayload.raml @@ -1,5 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-messages type: MessagePayload +(ignoreValidators): [PolymorphicSubtypesRule] displayName: OrderMessagePayload diff --git a/api-specs/api/types/message/payload/OrderPaymentAddedMessagePayload.raml b/api-specs/api/types/message/payload/OrderPaymentAddedMessagePayload.raml index 5a54b57120..d7e33a7d43 100644 --- a/api-specs/api/types/message/payload/OrderPaymentAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderPaymentAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-payment-added type: MessagePayload displayName: OrderPaymentAddedMessagePayload discriminatorValue: OrderPaymentAdded diff --git a/api-specs/api/types/message/payload/OrderPaymentStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/OrderPaymentStateChangedMessagePayload.raml index b57bc64e27..0f360b4795 100644 --- a/api-specs/api/types/message/payload/OrderPaymentStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderPaymentStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-payment-state-changed type: OrderMessagePayload displayName: OrderPaymentStateChangedMessagePayload discriminatorValue: OrderPaymentStateChanged diff --git a/api-specs/api/types/message/payload/OrderPurchaseOrderNumberSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderPurchaseOrderNumberSetMessagePayload.raml index eb3b36f02b..7e9d8317b3 100644 --- a/api-specs/api/types/message/payload/OrderPurchaseOrderNumberSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderPurchaseOrderNumberSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#order-purchase-order-number-set type: OrderMessagePayload displayName: OrderPurchaseOrderNumberSetMessagePayload discriminatorValue: OrderPurchaseOrderNumberSet diff --git a/api-specs/api/types/message/payload/OrderReturnShipmentStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/OrderReturnShipmentStateChangedMessagePayload.raml index e3d8e1d4b2..d76beb840f 100644 --- a/api-specs/api/types/message/payload/OrderReturnShipmentStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderReturnShipmentStateChangedMessagePayload.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-return-shipment-state-changed type: OrderMessagePayload displayName: OrderReturnShipmentStateChangedMessagePayload discriminatorValue: OrderReturnShipmentStateChanged description: | - Generated after a successful [Set ReturnShipmentState](ctp:api:type:OrderSetReturnShipmentStateAction) update action. + Generated after a successful [Set ReturnShipmentState](ctp:api:type:OrderSetReturnShipmentStateAction) update action on [Orders](ctp:api:type:Order) and [Order Edits](ctp:api:type:OrderEdit). properties: returnItemId: type: string diff --git a/api-specs/api/types/message/payload/OrderShipmentStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/OrderShipmentStateChangedMessagePayload.raml index 5405e89262..5ec6bbf76c 100644 --- a/api-specs/api/types/message/payload/OrderShipmentStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderShipmentStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipment-state-changed type: OrderMessagePayload displayName: OrderShipmentStateChangedMessagePayload discriminatorValue: OrderShipmentStateChanged @@ -11,7 +10,7 @@ properties: type: ShipmentState description: | [ShipmentState](ctp:api:type:ShipmentState) after the [Change Shipment State](ctp:api:type:OrderChangeShipmentStateAction) update action. - oldShipmentState: + oldShipmentState?: type: ShipmentState description: | [ShipmentState](ctp:api:type:ShipmentState) before the [Change Shipment State](ctp:api:type:OrderChangeShipmentStateAction) update action. diff --git a/api-specs/api/types/message/payload/OrderShippingAddressSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderShippingAddressSetMessagePayload.raml index e25c68096e..48d9522e1e 100644 --- a/api-specs/api/types/message/payload/OrderShippingAddressSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderShippingAddressSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipping-address-set type: OrderMessagePayload displayName: OrderShippingAddressSetMessagePayload discriminatorValue: OrderShippingAddressSet diff --git a/api-specs/api/types/message/payload/OrderShippingInfoSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderShippingInfoSetMessagePayload.raml index 83cd3eea6d..bf83999d24 100644 --- a/api-specs/api/types/message/payload/OrderShippingInfoSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderShippingInfoSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipping-info-set type: OrderMessagePayload displayName: OrderShippingInfoSetMessagePayload discriminatorValue: OrderShippingInfoSet diff --git a/api-specs/api/types/message/payload/OrderShippingRateInputSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderShippingRateInputSetMessagePayload.raml index fa6b4365dd..b4bbf27969 100644 --- a/api-specs/api/types/message/payload/OrderShippingRateInputSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderShippingRateInputSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-shipping-rate-input-set type: OrderMessagePayload displayName: OrderShippingRateInputSetMessagePayload discriminatorValue: OrderShippingRateInputSet diff --git a/api-specs/api/types/message/payload/OrderStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/OrderStateChangedMessagePayload.raml index d0311fc465..fbe2209694 100644 --- a/api-specs/api/types/message/payload/OrderStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-state-changed type: OrderMessagePayload displayName: OrderStateChangedMessagePayload discriminatorValue: OrderStateChanged @@ -11,7 +10,7 @@ properties: type: OrderState description: | [OrderState](ctp:api:type:OrderState) after the [Change Order State](ctp:api:type:OrderChangeOrderStateAction) update action. - oldOrderState: + oldOrderState?: type: OrderState description: | [OrderState](ctp:api:type:OrderState) before the [Change Order State](ctp:api:type:OrderChangeOrderStateAction) update action. diff --git a/api-specs/api/types/message/payload/OrderStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/OrderStateTransitionMessagePayload.raml index 4f3579e9f9..caa07e6ad9 100644 --- a/api-specs/api/types/message/payload/OrderStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-state-transition type: OrderMessagePayload displayName: OrderStateTransitionMessagePayload discriminatorValue: OrderStateTransition diff --git a/api-specs/api/types/message/payload/OrderStoreSetMessagePayload.raml b/api-specs/api/types/message/payload/OrderStoreSetMessagePayload.raml index f29547fe41..dd96c9c73b 100644 --- a/api-specs/api/types/message/payload/OrderStoreSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/OrderStoreSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#order-store-set type: OrderMessagePayload displayName: OrderStoreSetMessagePayload discriminatorValue: OrderStoreSet diff --git a/api-specs/api/types/message/payload/ParcelAddedToDeliveryMessagePayload.raml b/api-specs/api/types/message/payload/ParcelAddedToDeliveryMessagePayload.raml index 4f5cb04457..47fc97d007 100644 --- a/api-specs/api/types/message/payload/ParcelAddedToDeliveryMessagePayload.raml +++ b/api-specs/api/types/message/payload/ParcelAddedToDeliveryMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-added-to-delivery type: OrderMessagePayload displayName: ParcelAddedToDeliveryMessagePayload discriminatorValue: ParcelAddedToDelivery diff --git a/api-specs/api/types/message/payload/ParcelItemsUpdatedMessagePayload.raml b/api-specs/api/types/message/payload/ParcelItemsUpdatedMessagePayload.raml index 84a6c54319..a23550e317 100644 --- a/api-specs/api/types/message/payload/ParcelItemsUpdatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ParcelItemsUpdatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-items-updated type: OrderMessagePayload displayName: ParcelItemsUpdatedMessagePayload discriminatorValue: ParcelItemsUpdated diff --git a/api-specs/api/types/message/payload/ParcelMeasurementsUpdatedMessagePayload.raml b/api-specs/api/types/message/payload/ParcelMeasurementsUpdatedMessagePayload.raml index b951ef3416..747d208879 100644 --- a/api-specs/api/types/message/payload/ParcelMeasurementsUpdatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ParcelMeasurementsUpdatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-measurements-updated type: OrderMessagePayload displayName: ParcelMeasurementsUpdatedMessagePayload discriminatorValue: ParcelMeasurementsUpdated diff --git a/api-specs/api/types/message/payload/ParcelRemovedFromDeliveryMessagePayload.raml b/api-specs/api/types/message/payload/ParcelRemovedFromDeliveryMessagePayload.raml index 7d60fbae0d..e7717464b0 100644 --- a/api-specs/api/types/message/payload/ParcelRemovedFromDeliveryMessagePayload.raml +++ b/api-specs/api/types/message/payload/ParcelRemovedFromDeliveryMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-removed-from-delivery type: OrderMessagePayload displayName: ParcelRemovedFromDeliveryMessagePayload discriminatorValue: ParcelRemovedFromDelivery diff --git a/api-specs/api/types/message/payload/ParcelTrackingDataUpdatedMessagePayload.raml b/api-specs/api/types/message/payload/ParcelTrackingDataUpdatedMessagePayload.raml index f4a5d12bc1..64541bfd44 100644 --- a/api-specs/api/types/message/payload/ParcelTrackingDataUpdatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ParcelTrackingDataUpdatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#parcel-tracking-data-updated type: OrderMessagePayload displayName: ParcelTrackingDataUpdatedMessagePayload discriminatorValue: ParcelTrackingDataUpdated diff --git a/api-specs/api/types/message/payload/PaymentCreatedMessagePayload.raml b/api-specs/api/types/message/payload/PaymentCreatedMessagePayload.raml index 7d787facc5..30560343eb 100644 --- a/api-specs/api/types/message/payload/PaymentCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/PaymentCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-created type: MessagePayload displayName: PaymentCreatedMessagePayload discriminatorValue: PaymentCreated diff --git a/api-specs/api/types/message/payload/PaymentInteractionAddedMessagePayload.raml b/api-specs/api/types/message/payload/PaymentInteractionAddedMessagePayload.raml index e8f09bd173..16f50c1626 100644 --- a/api-specs/api/types/message/payload/PaymentInteractionAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/PaymentInteractionAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-interaction-added type: MessagePayload displayName: PaymentInteractionAddedMessagePayload discriminatorValue: PaymentInteractionAdded diff --git a/api-specs/api/types/message/payload/PaymentStatusInterfaceCodeSetMessagePayload.raml b/api-specs/api/types/message/payload/PaymentStatusInterfaceCodeSetMessagePayload.raml index 5dae3b99e3..8b45d6594b 100644 --- a/api-specs/api/types/message/payload/PaymentStatusInterfaceCodeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/PaymentStatusInterfaceCodeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-status-interface-code-set type: MessagePayload displayName: PaymentStatusInterfaceCodeSetMessagePayload discriminatorValue: PaymentStatusInterfaceCodeSet diff --git a/api-specs/api/types/message/payload/PaymentStatusStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/PaymentStatusStateTransitionMessagePayload.raml index 00b53a076a..c6a906a244 100644 --- a/api-specs/api/types/message/payload/PaymentStatusStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/PaymentStatusStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-status-state-transition type: MessagePayload displayName: PaymentStatusStateTransitionMessagePayload discriminatorValue: PaymentStatusStateTransition diff --git a/api-specs/api/types/message/payload/PaymentTransactionAddedMessagePayload.raml b/api-specs/api/types/message/payload/PaymentTransactionAddedMessagePayload.raml index 53e1e860c4..24efae7710 100644 --- a/api-specs/api/types/message/payload/PaymentTransactionAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/PaymentTransactionAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-transaction-added type: MessagePayload displayName: PaymentTransactionAddedMessagePayload discriminatorValue: PaymentTransactionAdded diff --git a/api-specs/api/types/message/payload/PaymentTransactionStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/PaymentTransactionStateChangedMessagePayload.raml index c3bb5a49c8..3754715264 100644 --- a/api-specs/api/types/message/payload/PaymentTransactionStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/PaymentTransactionStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#payment-transaction-state-changed type: MessagePayload displayName: PaymentTransactionStateChangedMessagePayload discriminatorValue: PaymentTransactionStateChanged diff --git a/api-specs/api/types/message/payload/ProductAddedToCategoryMessagePayload.raml b/api-specs/api/types/message/payload/ProductAddedToCategoryMessagePayload.raml index fb1951c2d8..32677692e4 100644 --- a/api-specs/api/types/message/payload/ProductAddedToCategoryMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductAddedToCategoryMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-added-to-category type: MessagePayload displayName: ProductAddedToCategoryMessagePayload discriminatorValue: ProductAddedToCategory diff --git a/api-specs/api/types/message/payload/ProductCreatedMessagePayload.raml b/api-specs/api/types/message/payload/ProductCreatedMessagePayload.raml index 7b11f39779..a3b7f71f31 100644 --- a/api-specs/api/types/message/payload/ProductCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-created type: MessagePayload displayName: ProductCreatedMessagePayload discriminatorValue: ProductCreated diff --git a/api-specs/api/types/message/payload/ProductDeletedMessagePayload.raml b/api-specs/api/types/message/payload/ProductDeletedMessagePayload.raml index 61e75fdb54..659b26f2cd 100644 --- a/api-specs/api/types/message/payload/ProductDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-deleted type: MessagePayload displayName: ProductDeletedMessagePayload discriminatorValue: ProductDeleted diff --git a/api-specs/api/types/message/payload/ProductImageAddedMessagePayload.raml b/api-specs/api/types/message/payload/ProductImageAddedMessagePayload.raml index 583658d7c7..5123313563 100644 --- a/api-specs/api/types/message/payload/ProductImageAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductImageAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-image-added type: MessagePayload displayName: ProductImageAddedMessagePayload discriminatorValue: ProductImageAdded diff --git a/api-specs/api/types/message/payload/ProductPriceAddedMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceAddedMessagePayload.raml index e593d7e557..7b18fe3d52 100644 --- a/api-specs/api/types/message/payload/ProductPriceAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-added type: MessagePayload displayName: ProductPriceAddedMessagePayload discriminatorValue: ProductPriceAdded diff --git a/api-specs/api/types/message/payload/ProductPriceChangedMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceChangedMessagePayload.raml index cafa973d36..4e6c800dcc 100644 --- a/api-specs/api/types/message/payload/ProductPriceChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-changed type: MessagePayload displayName: ProductPriceChangedMessagePayload discriminatorValue: ProductPriceChanged diff --git a/api-specs/api/types/message/payload/ProductPriceDiscountsSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceDiscountsSetMessagePayload.raml index cfab409e76..6839ba66d1 100644 --- a/api-specs/api/types/message/payload/ProductPriceDiscountsSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceDiscountsSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-price-discounts-set type: MessagePayload displayName: ProductPriceDiscountsSetMessagePayload discriminatorValue: ProductPriceDiscountsSet diff --git a/api-specs/api/types/message/payload/ProductPriceExternalDiscountSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceExternalDiscountSetMessagePayload.raml index 47bba975ab..482528f01a 100644 --- a/api-specs/api/types/message/payload/ProductPriceExternalDiscountSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceExternalDiscountSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-price-external-discount-set type: MessagePayload displayName: ProductPriceExternalDiscountSetMessagePayload discriminatorValue: ProductPriceExternalDiscountSet diff --git a/api-specs/api/types/message/payload/ProductPriceKeySetMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceKeySetMessagePayload.raml index 468e42e6d7..b7cb83fa48 100644 --- a/api-specs/api/types/message/payload/ProductPriceKeySetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceKeySetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-key-set type: MessagePayload displayName: ProductPriceKeySetMessagePayload discriminatorValue: ProductPriceKeySet diff --git a/api-specs/api/types/message/payload/ProductPriceModeSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceModeSetMessagePayload.raml index 80ed8955c4..6614a2a03b 100644 --- a/api-specs/api/types/message/payload/ProductPriceModeSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceModeSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-mode-set type: MessagePayload displayName: ProductPriceModeSetMessagePayload discriminatorValue: ProductPriceModeSet diff --git a/api-specs/api/types/message/payload/ProductPriceRemovedMessagePayload.raml b/api-specs/api/types/message/payload/ProductPriceRemovedMessagePayload.raml index 0e671efb9f..a5b8f74454 100644 --- a/api-specs/api/types/message/payload/ProductPriceRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPriceRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-price-removed type: MessagePayload displayName: ProductPriceRemovedMessagePayload discriminatorValue: ProductPriceRemoved diff --git a/api-specs/api/types/message/payload/ProductPricesSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductPricesSetMessagePayload.raml index 60de9b7bea..2fd48e65fe 100644 --- a/api-specs/api/types/message/payload/ProductPricesSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPricesSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#product-prices-set type: MessagePayload displayName: ProductPricesSetMessagePayload discriminatorValue: ProductPricesSet diff --git a/api-specs/api/types/message/payload/ProductPublishedMessagePayload.raml b/api-specs/api/types/message/payload/ProductPublishedMessagePayload.raml index 149e6d6de3..82978b9d32 100644 --- a/api-specs/api/types/message/payload/ProductPublishedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductPublishedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-published type: MessagePayload displayName: ProductPublishedMessagePayload discriminatorValue: ProductPublished diff --git a/api-specs/api/types/message/payload/ProductRemovedFromCategoryMessagePayload.raml b/api-specs/api/types/message/payload/ProductRemovedFromCategoryMessagePayload.raml index c19b9ac3da..d5511bf24c 100644 --- a/api-specs/api/types/message/payload/ProductRemovedFromCategoryMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductRemovedFromCategoryMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-removed-from-category type: MessagePayload displayName: ProductRemovedFromCategoryMessagePayload discriminatorValue: ProductRemovedFromCategory diff --git a/api-specs/api/types/message/payload/ProductRevertedStagedChangesMessagePayload.raml b/api-specs/api/types/message/payload/ProductRevertedStagedChangesMessagePayload.raml index 37027dd30b..e727c5616e 100644 --- a/api-specs/api/types/message/payload/ProductRevertedStagedChangesMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductRevertedStagedChangesMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-reverted-staged-changes type: MessagePayload displayName: ProductRevertedStagedChangesMessagePayload discriminatorValue: ProductRevertedStagedChanges diff --git a/api-specs/api/types/message/payload/ProductSelectionCreatedMessagePayload.raml b/api-specs/api/types/message/payload/ProductSelectionCreatedMessagePayload.raml index 08eb4c84ca..658ad38cc7 100644 --- a/api-specs/api/types/message/payload/ProductSelectionCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductSelectionCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-created type: MessagePayload displayName: ProductSelectionCreatedMessagePayload discriminatorValue: ProductSelectionCreated diff --git a/api-specs/api/types/message/payload/ProductSelectionDeletedMessagePayload.raml b/api-specs/api/types/message/payload/ProductSelectionDeletedMessagePayload.raml index 4f01b0d6dd..bf3bda58a6 100644 --- a/api-specs/api/types/message/payload/ProductSelectionDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductSelectionDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-deleted type: MessagePayload displayName: ProductSelectionDeletedMessagePayload discriminatorValue: ProductSelectionDeleted diff --git a/api-specs/api/types/message/payload/ProductSelectionProductAddedMessagePayload.raml b/api-specs/api/types/message/payload/ProductSelectionProductAddedMessagePayload.raml index f342abda07..2b443823bd 100644 --- a/api-specs/api/types/message/payload/ProductSelectionProductAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductSelectionProductAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-product-added type: MessagePayload displayName: ProductSelectionProductAddedMessagePayload discriminatorValue: ProductSelectionProductAdded diff --git a/api-specs/api/types/message/payload/ProductSelectionProductExcludedMessagePayload.raml b/api-specs/api/types/message/payload/ProductSelectionProductExcludedMessagePayload.raml index 8207e7c249..d2744205a3 100644 --- a/api-specs/api/types/message/payload/ProductSelectionProductExcludedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductSelectionProductExcludedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-product-excluded type: MessagePayload displayName: ProductSelectionProductExcludedMessagePayload discriminatorValue: ProductSelectionProductExcluded diff --git a/api-specs/api/types/message/payload/ProductSelectionProductRemovedMessagePayload.raml b/api-specs/api/types/message/payload/ProductSelectionProductRemovedMessagePayload.raml index d4e07be27d..eba268cd5e 100644 --- a/api-specs/api/types/message/payload/ProductSelectionProductRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductSelectionProductRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-selection-product-removed type: MessagePayload displayName: ProductSelectionProductRemovedMessagePayload discriminatorValue: ProductSelectionProductRemoved diff --git a/api-specs/api/types/message/payload/ProductSlugChangedMessagePayload.raml b/api-specs/api/types/message/payload/ProductSlugChangedMessagePayload.raml index 275f4af59d..03a7f9f072 100644 --- a/api-specs/api/types/message/payload/ProductSlugChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductSlugChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-slug-changed type: MessagePayload displayName: ProductSlugChangedMessagePayload discriminatorValue: ProductSlugChanged diff --git a/api-specs/api/types/message/payload/ProductStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/ProductStateTransitionMessagePayload.raml index 079ab60203..9336c886ba 100644 --- a/api-specs/api/types/message/payload/ProductStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-state-transition type: MessagePayload displayName: ProductStateTransitionMessagePayload discriminatorValue: ProductStateTransition diff --git a/api-specs/api/types/message/payload/ProductTailoringCreatedMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringCreatedMessagePayload.raml new file mode 100644 index 0000000000..422f5531d7 --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringCreatedMessagePayload.raml @@ -0,0 +1,42 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringCreatedMessagePayload +discriminatorValue: ProductTailoringCreated +description: | + Generated after a successful [Create Product Tailoring](/../api/projects/product-tailoring#create-producttailoring) or + [Create Product Tailoring in Store](/../api/projects/product-tailoring#create-producttailoring-in-store) request. +properties: + key?: + type: string + description: | + User-defined unique identifier of the Product Tailoring. + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + description?: + type: LocalizedString + description: | + The description of the [Product Tailoring](ctp:api:type:ProductTailoring) at the time of creation. + name?: + type: LocalizedString + description: | + The name of the [Product Tailoring](ctp:api:type:ProductTailoring) at the time of creation. + slug?: + type: LocalizedString + description: | + The slug of the [Product Tailoring](ctp:api:type:ProductTailoring) at the time of creation. + published: + type: boolean + description: | + `true` if the ProductTailoring is published. diff --git a/api-specs/api/types/message/payload/ProductTailoringDeletedMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringDeletedMessagePayload.raml new file mode 100644 index 0000000000..e91ec8b559 --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringDeletedMessagePayload.raml @@ -0,0 +1,22 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringDeletedMessagePayload +discriminatorValue: ProductTailoringDeleted +description: | + Generated after a successful [Delete Product Tailoring](/../api/projects/product-tailoring#delete-producttailoring) or + [Delete ProductTailoring assigned to Product in Store](/../api/projects/product-tailoring#delete-producttailoring-assigned-to-product-in-store) request. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. diff --git a/api-specs/api/types/message/payload/ProductTailoringDescriptionSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringDescriptionSetMessagePayload.raml new file mode 100644 index 0000000000..1c687ad7e4 --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringDescriptionSetMessagePayload.raml @@ -0,0 +1,29 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringDescriptionSetMessagePayload +discriminatorValue: ProductTailoringDescriptionSet +description: | + Generated after a successful Product Tailoring [Set Description](ctp:api:type:ProductTailoringSetDescriptionAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + description?: + type: LocalizedString + description: | + The description of the [Product Tailoring](ctp:api:type:ProductTailoring) after the [Set Description](ctp:api:type:ProductTailoringSetDescriptionAction) update action. + oldDescription?: + type: LocalizedString + description: | + The description of the [ProductTailoring](ctp:api:type:ProductTailoring) before the [Set Description](ctp:api:type:ProductTailoringSetDescriptionAction) update action. diff --git a/api-specs/api/types/message/payload/ProductTailoringNameSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringNameSetMessagePayload.raml new file mode 100644 index 0000000000..41c96a65cf --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringNameSetMessagePayload.raml @@ -0,0 +1,29 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringNameSetMessagePayload +discriminatorValue: ProductTailoringNameSet +description: | + Generated after a successful Product Tailoring [Set Name](ctp:api:type:ProductTailoringSetNameAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + name?: + type: LocalizedString + description: | + The name of the [Product Tailoring](ctp:api:type:ProductTailoring) after the [Set Name](ctp:api:type:ProductTailoringSetNameAction) update action. + oldName?: + type: LocalizedString + description: | + The name of the [ProductTailoring](ctp:api:type:ProductTailoring) before the [Set Name](ctp:api:type:ProductTailoringSetNameAction) update action. diff --git a/api-specs/api/types/message/payload/ProductTailoringPublishedMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringPublishedMessagePayload.raml new file mode 100644 index 0000000000..b8bdabee88 --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringPublishedMessagePayload.raml @@ -0,0 +1,21 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringPublishedMessagePayload +discriminatorValue: ProductTailoringPublished +description: | + Generated after a successful [Product Tailoring Publish](ctp:api:type:ProductTailoringPublishAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. diff --git a/api-specs/api/types/message/payload/ProductTailoringSlugSetMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringSlugSetMessagePayload.raml new file mode 100644 index 0000000000..6194539f87 --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringSlugSetMessagePayload.raml @@ -0,0 +1,29 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringSlugSetMessagePayload +discriminatorValue: ProductTailoringSlugSet +description: | + Generated after a successful Product Tailoring [Set Slug](ctp:api:type:ProductTailoringSetSlugAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. + slug?: + type: LocalizedString + description: | + The slug of the [Product Tailoring](ctp:api:type:ProductTailoring) after the [Set Slug](ctp:api:type:ProductTailoringSetSlugAction) update action. + oldSlug?: + type: LocalizedString + description: | + The slug of the [ProductTailoring](ctp:api:type:ProductTailoring) before the [Set Slug](ctp:api:type:ProductTailoringSetSlugAction) update action. diff --git a/api-specs/api/types/message/payload/ProductTailoringUnpublishedMessagePayload.raml b/api-specs/api/types/message/payload/ProductTailoringUnpublishedMessagePayload.raml new file mode 100644 index 0000000000..6df3de2b22 --- /dev/null +++ b/api-specs/api/types/message/payload/ProductTailoringUnpublishedMessagePayload.raml @@ -0,0 +1,21 @@ +#%RAML 1.0 DataType +(package): Message +type: MessagePayload +(beta): true +displayName: ProductTailoringUnpublishedMessagePayload +discriminatorValue: ProductTailoringUnpublished +description: | + Generated after a successful [Product Tailoring Unpublish](ctp:api:type:ProductTailoringUnpublishAction) update action. +properties: + store: + type: StoreKeyReference + description: | + The Store to which the Product Tailoring belongs. + productKey?: + type: string + description: | + User-defined unique identifier of the Product this Product Tailoring belongs to. + product: + type: ProductReference + description: | + Reference to the Product the Product Tailoring belongs to. diff --git a/api-specs/api/types/message/payload/ProductUnpublishedMessagePayload.raml b/api-specs/api/types/message/payload/ProductUnpublishedMessagePayload.raml index 0b8e63fa72..d5ab4d49f1 100644 --- a/api-specs/api/types/message/payload/ProductUnpublishedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductUnpublishedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-unpublished type: MessagePayload displayName: ProductUnpublishedMessagePayload discriminatorValue: ProductUnpublished diff --git a/api-specs/api/types/message/payload/ProductVariantAddedMessagePayload.raml b/api-specs/api/types/message/payload/ProductVariantAddedMessagePayload.raml index 329557e713..a3b2b84dff 100644 --- a/api-specs/api/types/message/payload/ProductVariantAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductVariantAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-variant-added type: MessagePayload displayName: ProductVariantAddedMessagePayload discriminatorValue: ProductVariantAdded diff --git a/api-specs/api/types/message/payload/ProductVariantDeletedMessagePayload.raml b/api-specs/api/types/message/payload/ProductVariantDeletedMessagePayload.raml index 00ee9b9b26..89e74c7522 100644 --- a/api-specs/api/types/message/payload/ProductVariantDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ProductVariantDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#product-variant-deleted type: MessagePayload displayName: ProductVariantDeletedMessagePayload discriminatorValue: ProductVariantDeleted diff --git a/api-specs/api/types/message/payload/QuoteCreatedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteCreatedMessagePayload.raml index 1f24114628..97e0886b1d 100644 --- a/api-specs/api/types/message/payload/QuoteCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-created type: MessagePayload displayName: QuoteCreatedMessagePayload discriminatorValue: QuoteCreated diff --git a/api-specs/api/types/message/payload/QuoteCustomerChangedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteCustomerChangedMessagePayload.raml index 0e4c2123bd..4ea31acb4c 100644 --- a/api-specs/api/types/message/payload/QuoteCustomerChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteCustomerChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-change-customer type: MessagePayload displayName: QuoteCustomerChangedMessagePayload discriminatorValue: QuoteCustomerChanged diff --git a/api-specs/api/types/message/payload/QuoteDeletedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteDeletedMessagePayload.raml index 0b4aaba844..2de5590a5d 100644 --- a/api-specs/api/types/message/payload/QuoteDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-deleted type: MessagePayload displayName: QuoteDeletedMessagePayload discriminatorValue: QuoteDeleted diff --git a/api-specs/api/types/message/payload/QuoteRenegotiationRequestedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteRenegotiationRequestedMessagePayload.raml index 18c10e4aa6..2681b13c65 100644 --- a/api-specs/api/types/message/payload/QuoteRenegotiationRequestedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteRenegotiationRequestedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-renegotiation-requested type: MessagePayload displayName: QuoteRenegotiationRequestedMessagePayload discriminatorValue: QuoteRenegotiationRequested diff --git a/api-specs/api/types/message/payload/QuoteRequestCreatedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteRequestCreatedMessagePayload.raml index 2a8c24bf5d..5e715506ec 100644 --- a/api-specs/api/types/message/payload/QuoteRequestCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteRequestCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-created type: MessagePayload displayName: QuoteRequestCreatedMessagePayload discriminatorValue: QuoteRequestCreated diff --git a/api-specs/api/types/message/payload/QuoteRequestCustomerChangedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteRequestCustomerChangedMessagePayload.raml index 7733418b70..b252de2b13 100644 --- a/api-specs/api/types/message/payload/QuoteRequestCustomerChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteRequestCustomerChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-change-customer type: MessagePayload displayName: QuoteRequestCustomerChangedMessagePayload discriminatorValue: QuoteRequestCustomerChanged diff --git a/api-specs/api/types/message/payload/QuoteRequestDeletedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteRequestDeletedMessagePayload.raml index 8ba2d472e7..48d9d12018 100644 --- a/api-specs/api/types/message/payload/QuoteRequestDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteRequestDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-deleted type: MessagePayload displayName: QuoteRequestDeletedMessagePayload discriminatorValue: QuoteRequestDeleted diff --git a/api-specs/api/types/message/payload/QuoteRequestStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteRequestStateChangedMessagePayload.raml index bf09f02eb4..b4de077801 100644 --- a/api-specs/api/types/message/payload/QuoteRequestStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteRequestStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-state-changed type: MessagePayload displayName: QuoteRequestStateChangedMessagePayload discriminatorValue: QuoteRequestStateChanged diff --git a/api-specs/api/types/message/payload/QuoteRequestStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/QuoteRequestStateTransitionMessagePayload.raml index 7f23e10942..ded308ef99 100644 --- a/api-specs/api/types/message/payload/QuoteRequestStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteRequestStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-request-state-transition type: MessagePayload displayName: QuoteRequestStateTransitionMessagePayload discriminatorValue: QuoteRequestStateTransition diff --git a/api-specs/api/types/message/payload/QuoteStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/QuoteStateChangedMessagePayload.raml index 96cf012b10..8f7dcc15eb 100644 --- a/api-specs/api/types/message/payload/QuoteStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-state-changed type: MessagePayload displayName: QuoteStateChangedMessagePayload discriminatorValue: QuoteStateChanged diff --git a/api-specs/api/types/message/payload/QuoteStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/QuoteStateTransitionMessagePayload.raml index a46184130a..a7ea18b172 100644 --- a/api-specs/api/types/message/payload/QuoteStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/QuoteStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#quote-state-transition type: MessagePayload displayName: QuoteStateTransitionMessagePayload discriminatorValue: QuoteStateTransition diff --git a/api-specs/api/types/message/payload/ReturnInfoAddedMessagePayload.raml b/api-specs/api/types/message/payload/ReturnInfoAddedMessagePayload.raml index 106c6a07cc..d83bed0134 100644 --- a/api-specs/api/types/message/payload/ReturnInfoAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ReturnInfoAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#return-info-added type: OrderMessagePayload displayName: ReturnInfoAddedMessagePayload discriminatorValue: ReturnInfoAdded diff --git a/api-specs/api/types/message/payload/ReturnInfoSetMessagePayload.raml b/api-specs/api/types/message/payload/ReturnInfoSetMessagePayload.raml index db364e6d62..77e67131bb 100644 --- a/api-specs/api/types/message/payload/ReturnInfoSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ReturnInfoSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#return-info-set type: OrderMessagePayload displayName: ReturnInfoSetMessagePayload discriminatorValue: ReturnInfoSet diff --git a/api-specs/api/types/message/payload/ReviewCreatedMessagePayload.raml b/api-specs/api/types/message/payload/ReviewCreatedMessagePayload.raml index 98e0cfa9dc..de642df250 100644 --- a/api-specs/api/types/message/payload/ReviewCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/ReviewCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#review-created type: MessagePayload displayName: ReviewCreatedMessagePayload discriminatorValue: ReviewCreated diff --git a/api-specs/api/types/message/payload/ReviewRatingSetMessagePayload.raml b/api-specs/api/types/message/payload/ReviewRatingSetMessagePayload.raml index 07bed64cff..57c6c5f3e2 100644 --- a/api-specs/api/types/message/payload/ReviewRatingSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ReviewRatingSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#review-rating-set type: MessagePayload displayName: ReviewRatingSetMessagePayload discriminatorValue: ReviewRatingSet diff --git a/api-specs/api/types/message/payload/ReviewStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/ReviewStateTransitionMessagePayload.raml index fe695415c4..fc3cbe1b10 100644 --- a/api-specs/api/types/message/payload/ReviewStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/ReviewStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#review-state-transition type: MessagePayload displayName: ReviewStateTransitionMessagePayload discriminatorValue: ReviewStateTransition diff --git a/api-specs/api/types/message/payload/ShoppingListStoreSetMessagePayload.raml b/api-specs/api/types/message/payload/ShoppingListStoreSetMessagePayload.raml index 052e1c9961..f88528819a 100644 --- a/api-specs/api/types/message/payload/ShoppingListStoreSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/ShoppingListStoreSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#shoppingliststoreset-message type: MessagePayload displayName: ShoppingListStoreSetMessagePayload discriminatorValue: ShoppingListStoreSet diff --git a/api-specs/api/types/message/payload/StagedQuoteCreatedMessagePayload.raml b/api-specs/api/types/message/payload/StagedQuoteCreatedMessagePayload.raml index 81ca68da4a..0d1e47ed67 100644 --- a/api-specs/api/types/message/payload/StagedQuoteCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StagedQuoteCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotecreatedmessage type: MessagePayload displayName: StagedQuoteCreatedMessagePayload discriminatorValue: StagedQuoteCreated diff --git a/api-specs/api/types/message/payload/StagedQuoteDeletedMessagePayload.raml b/api-specs/api/types/message/payload/StagedQuoteDeletedMessagePayload.raml index bcbd66b832..0066717931 100644 --- a/api-specs/api/types/message/payload/StagedQuoteDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StagedQuoteDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotedeletedmessage type: MessagePayload displayName: StagedQuoteDeletedMessagePayload discriminatorValue: StagedQuoteDeleted diff --git a/api-specs/api/types/message/payload/StagedQuoteSellerCommentSetMessagePayload.raml b/api-specs/api/types/message/payload/StagedQuoteSellerCommentSetMessagePayload.raml index 752c73a873..bd988cab3a 100644 --- a/api-specs/api/types/message/payload/StagedQuoteSellerCommentSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StagedQuoteSellerCommentSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotesellercommentsetmessage type: MessagePayload displayName: StagedQuoteSellerCommentSetMessagePayload discriminatorValue: StagedQuoteSellerCommentSet diff --git a/api-specs/api/types/message/payload/StagedQuoteStateChangedMessagePayload.raml b/api-specs/api/types/message/payload/StagedQuoteStateChangedMessagePayload.raml index 30804ebd61..9e9322a65f 100644 --- a/api-specs/api/types/message/payload/StagedQuoteStateChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StagedQuoteStateChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotestatechangedmessage type: MessagePayload displayName: StagedQuoteStateChangedMessagePayload discriminatorValue: StagedQuoteStateChanged diff --git a/api-specs/api/types/message/payload/StagedQuoteStateTransitionMessagePayload.raml b/api-specs/api/types/message/payload/StagedQuoteStateTransitionMessagePayload.raml index cfd6f6537a..95af3eb7e8 100644 --- a/api-specs/api/types/message/payload/StagedQuoteStateTransitionMessagePayload.raml +++ b/api-specs/api/types/message/payload/StagedQuoteStateTransitionMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#staged-quote-state-transition type: MessagePayload displayName: StagedQuoteStateTransitionMessagePayload discriminatorValue: StagedQuoteStateTransition diff --git a/api-specs/api/types/message/payload/StagedQuoteValidToSetMessagePayload.raml b/api-specs/api/types/message/payload/StagedQuoteValidToSetMessagePayload.raml index b252570357..02743e607f 100644 --- a/api-specs/api/types/message/payload/StagedQuoteValidToSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StagedQuoteValidToSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#stagedquotevalidtosetmessage type: MessagePayload displayName: StagedQuoteValidToSetMessagePayload discriminatorValue: StagedQuoteValidToSet diff --git a/api-specs/api/types/message/payload/StandalonePriceActiveChangedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceActiveChangedMessagePayload.raml index b7dca9d197..953eb0a6ad 100644 --- a/api-specs/api/types/message/payload/StandalonePriceActiveChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceActiveChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-active-changed type: MessagePayload displayName: StandalonePriceActiveChangedMessagePayload discriminatorValue: StandalonePriceActiveChanged diff --git a/api-specs/api/types/message/payload/StandalonePriceCreatedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceCreatedMessagePayload.raml index 9ea870e2d7..a6ba949b70 100644 --- a/api-specs/api/types/message/payload/StandalonePriceCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-created type: MessagePayload displayName: StandalonePriceCreatedMessagePayload discriminatorValue: StandalonePriceCreated diff --git a/api-specs/api/types/message/payload/StandalonePriceDeletedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceDeletedMessagePayload.raml index 12bb92fb85..865bc2e50d 100644 --- a/api-specs/api/types/message/payload/StandalonePriceDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-deleted type: MessagePayload displayName: StandalonePriceDeletedMessagePayload discriminatorValue: StandalonePriceDeleted diff --git a/api-specs/api/types/message/payload/StandalonePriceDiscountSetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceDiscountSetMessagePayload.raml index c5a547d1b0..103227bd78 100644 --- a/api-specs/api/types/message/payload/StandalonePriceDiscountSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceDiscountSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-discount-set type: MessagePayload displayName: StandalonePriceDiscountSetMessagePayload discriminatorValue: StandalonePriceDiscountSet diff --git a/api-specs/api/types/message/payload/StandalonePriceExternalDiscountSetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceExternalDiscountSetMessagePayload.raml index 4ac4591abf..92d03a4fe5 100644 --- a/api-specs/api/types/message/payload/StandalonePriceExternalDiscountSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceExternalDiscountSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-external-discount-set type: MessagePayload displayName: StandalonePriceExternalDiscountSetMessagePayload discriminatorValue: StandalonePriceExternalDiscountSet diff --git a/api-specs/api/types/message/payload/StandalonePriceKeySetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceKeySetMessagePayload.raml index 2805ba32df..b964c70a38 100644 --- a/api-specs/api/types/message/payload/StandalonePriceKeySetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceKeySetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-key-set type: MessagePayload displayName: StandalonePriceKeySetMessagePayload discriminatorValue: StandalonePriceKeySet diff --git a/api-specs/api/types/message/payload/StandalonePriceStagedChangesAppliedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceStagedChangesAppliedMessagePayload.raml index bd298f50cd..99025be1eb 100644 --- a/api-specs/api/types/message/payload/StandalonePriceStagedChangesAppliedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceStagedChangesAppliedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-staged-changes-applied type: MessagePayload displayName: StandalonePriceStagedChangesAppliedMessagePayload discriminatorValue: StandalonePriceStagedChangesApplied diff --git a/api-specs/api/types/message/payload/StandalonePriceStagedChangesRemovedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceStagedChangesRemovedMessagePayload.raml index bc10be3df1..72d3460880 100644 --- a/api-specs/api/types/message/payload/StandalonePriceStagedChangesRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceStagedChangesRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-staged-changes-removed type: MessagePayload displayName: StandalonePriceStagedChangesRemovedMessagePayload discriminatorValue: StandalonePriceStagedChangesRemoved diff --git a/api-specs/api/types/message/payload/StandalonePriceTierAddedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceTierAddedMessagePayload.raml index 3d84636477..937d22e81f 100644 --- a/api-specs/api/types/message/payload/StandalonePriceTierAddedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceTierAddedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: MessagePayload displayName: StandalonePriceTierAddedMessagePayload discriminatorValue: StandalonePriceTierAdded diff --git a/api-specs/api/types/message/payload/StandalonePriceTierRemovedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceTierRemovedMessagePayload.raml index 6b69fe8de7..75bdeaeac4 100644 --- a/api-specs/api/types/message/payload/StandalonePriceTierRemovedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceTierRemovedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: MessagePayload displayName: StandalonePriceTierRemovedMessagePayload discriminatorValue: StandalonePriceTierRemoved diff --git a/api-specs/api/types/message/payload/StandalonePriceTiersSetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceTiersSetMessagePayload.raml index 5b0639a040..436ca0713e 100644 --- a/api-specs/api/types/message/payload/StandalonePriceTiersSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceTiersSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: MessagePayload displayName: StandalonePriceTiersSetMessagePayload discriminatorValue: StandalonePriceTiersSet diff --git a/api-specs/api/types/message/payload/StandalonePriceValidFromAndUntilSetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceValidFromAndUntilSetMessagePayload.raml index 27d4d0aa74..576c7a152a 100644 --- a/api-specs/api/types/message/payload/StandalonePriceValidFromAndUntilSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceValidFromAndUntilSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-valid-from-and-until-set type: MessagePayload displayName: StandalonePriceValidFromAndUntilSetMessagePayload discriminatorValue: StandalonePriceValidFromAndUntilSet diff --git a/api-specs/api/types/message/payload/StandalonePriceValidFromSetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceValidFromSetMessagePayload.raml index 9c3447ebd0..93cb5264f7 100644 --- a/api-specs/api/types/message/payload/StandalonePriceValidFromSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceValidFromSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-valid-from-set type: MessagePayload displayName: StandalonePriceValidFromSetMessagePayload discriminatorValue: StandalonePriceValidFromSet diff --git a/api-specs/api/types/message/payload/StandalonePriceValidUntilSetMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceValidUntilSetMessagePayload.raml index 652c37369d..74cd5bc5d2 100644 --- a/api-specs/api/types/message/payload/StandalonePriceValidUntilSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceValidUntilSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-valid-until-set type: MessagePayload displayName: StandalonePriceValidUntilSetMessagePayload discriminatorValue: StandalonePriceValidUntilSet diff --git a/api-specs/api/types/message/payload/StandalonePriceValueChangedMessagePayload.raml b/api-specs/api/types/message/payload/StandalonePriceValueChangedMessagePayload.raml index eafe435812..3fa381f01e 100644 --- a/api-specs/api/types/message/payload/StandalonePriceValueChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StandalonePriceValueChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#standalone-price-value-changed type: MessagePayload displayName: StandalonePriceValueChangedMessagePayload discriminatorValue: StandalonePriceValueChanged diff --git a/api-specs/api/types/message/payload/StoreCountriesChangedMessagePayload.raml b/api-specs/api/types/message/payload/StoreCountriesChangedMessagePayload.raml index afc8dfc8d8..b63f084c00 100644 --- a/api-specs/api/types/message/payload/StoreCountriesChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreCountriesChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-countries-changed type: MessagePayload displayName: StoreCountriesChangedMessagePayload discriminatorValue: StoreCountriesChanged diff --git a/api-specs/api/types/message/payload/StoreCreatedMessagePayload.raml b/api-specs/api/types/message/payload/StoreCreatedMessagePayload.raml index b24db4af2b..f4e456f57a 100644 --- a/api-specs/api/types/message/payload/StoreCreatedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreCreatedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#store-created type: MessagePayload displayName: StoreCreatedMessagePayload discriminatorValue: StoreCreated diff --git a/api-specs/api/types/message/payload/StoreDeletedMessagePayload.raml b/api-specs/api/types/message/payload/StoreDeletedMessagePayload.raml index 1daace82aa..e273e5728f 100644 --- a/api-specs/api/types/message/payload/StoreDeletedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreDeletedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#store-deleted type: MessagePayload displayName: StoreDeletedMessagePayload discriminatorValue: StoreDeleted diff --git a/api-specs/api/types/message/payload/StoreDistributionChannelsChangedMessagePayload.raml b/api-specs/api/types/message/payload/StoreDistributionChannelsChangedMessagePayload.raml index b4daca985f..bab5cf53a3 100644 --- a/api-specs/api/types/message/payload/StoreDistributionChannelsChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreDistributionChannelsChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-distribution-channels-changed type: MessagePayload displayName: StoreDistributionChannelsChangedMessagePayload discriminatorValue: StoreDistributionChannelsChanged diff --git a/api-specs/api/types/message/payload/StoreLanguagesChangedMessagePayload.raml b/api-specs/api/types/message/payload/StoreLanguagesChangedMessagePayload.raml index a440bc545f..ec775220c2 100644 --- a/api-specs/api/types/message/payload/StoreLanguagesChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreLanguagesChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-languages-changed type: MessagePayload displayName: StoreLanguagesChangedMessagePayload discriminatorValue: StoreLanguagesChanged diff --git a/api-specs/api/types/message/payload/StoreNameSetMessagePayload.raml b/api-specs/api/types/message/payload/StoreNameSetMessagePayload.raml index 535b22313a..fafdc46cce 100644 --- a/api-specs/api/types/message/payload/StoreNameSetMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreNameSetMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-name-set type: MessagePayload displayName: StoreNameSetMessagePayload discriminatorValue: StoreNameSet diff --git a/api-specs/api/types/message/payload/StoreProductSelectionsChangedMessagePayload.raml b/api-specs/api/types/message/payload/StoreProductSelectionsChangedMessagePayload.raml index 55023c03a9..13e29ebebd 100644 --- a/api-specs/api/types/message/payload/StoreProductSelectionsChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreProductSelectionsChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/http-api-projects-messages.html#store-product-selections-changed type: MessagePayload displayName: StoreProductSelectionsChangedMessagePayload discriminatorValue: StoreProductSelectionsChanged diff --git a/api-specs/api/types/message/payload/StoreSupplyChannelsChangedMessagePayload.raml b/api-specs/api/types/message/payload/StoreSupplyChannelsChangedMessagePayload.raml index ef865ef05b..e0eb28f1bc 100644 --- a/api-specs/api/types/message/payload/StoreSupplyChannelsChangedMessagePayload.raml +++ b/api-specs/api/types/message/payload/StoreSupplyChannelsChangedMessagePayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Message -(docs-uri): https://docs.commercetools.com/api/projects/messages#store-supply-channels-changed type: MessagePayload displayName: StoreSupplyChannelsChangedMessagePayload discriminatorValue: StoreSupplyChannelsChanged diff --git a/api-specs/api/types/order-edit/OrderEdit.raml b/api-specs/api/types/order-edit/OrderEdit.raml index 7a69dfa61e..e0304784dc 100644 --- a/api-specs/api/types/order-edit/OrderEdit.raml +++ b/api-specs/api/types/order-edit/OrderEdit.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#orderedit displayName: OrderEdit (updateType): OrderEditUpdate type: BaseResource @@ -55,9 +54,9 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the OrderEdit. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the OrderEdit. diff --git a/api-specs/api/types/order-edit/OrderEditApplied.raml b/api-specs/api/types/order-edit/OrderEditApplied.raml index 725e50cb00..a781377797 100644 --- a/api-specs/api/types/order-edit/OrderEditApplied.raml +++ b/api-specs/api/types/order-edit/OrderEditApplied.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#orderedit-applied type: OrderEditResult displayName: OrderEditApplied discriminatorValue: Applied diff --git a/api-specs/api/types/order-edit/OrderEditDraft.raml b/api-specs/api/types/order-edit/OrderEditDraft.raml index 57e35639fd..12063f3e3a 100644 --- a/api-specs/api/types/order-edit/OrderEditDraft.raml +++ b/api-specs/api/types/order-edit/OrderEditDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#ordereditdraft displayName: OrderEditDraft type: object properties: diff --git a/api-specs/api/types/order-edit/OrderEditNotProcessed.raml b/api-specs/api/types/order-edit/OrderEditNotProcessed.raml index e183a77f1d..0326f9a23e 100644 --- a/api-specs/api/types/order-edit/OrderEditNotProcessed.raml +++ b/api-specs/api/types/order-edit/OrderEditNotProcessed.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#orderedit-notprocessed type: OrderEditResult displayName: OrderEditNotProcessed discriminatorValue: NotProcessed diff --git a/api-specs/api/types/order-edit/OrderEditPreviewFailure.raml b/api-specs/api/types/order-edit/OrderEditPreviewFailure.raml index e0603eebd6..57c175ce50 100644 --- a/api-specs/api/types/order-edit/OrderEditPreviewFailure.raml +++ b/api-specs/api/types/order-edit/OrderEditPreviewFailure.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#orderedit-previewfailure type: OrderEditResult displayName: OrderEditPreviewFailure discriminatorValue: PreviewFailure diff --git a/api-specs/api/types/order-edit/OrderEditPreviewSuccess.raml b/api-specs/api/types/order-edit/OrderEditPreviewSuccess.raml index 1bfa732db2..60479b3ff9 100644 --- a/api-specs/api/types/order-edit/OrderEditPreviewSuccess.raml +++ b/api-specs/api/types/order-edit/OrderEditPreviewSuccess.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#orderedit-previewsuccess type: OrderEditResult displayName: OrderEditPreviewSuccess discriminatorValue: PreviewSuccess diff --git a/api-specs/api/types/order-edit/OrderEditResult.raml b/api-specs/api/types/order-edit/OrderEditResult.raml index 5284f39375..9843d10d62 100644 --- a/api-specs/api/types/order-edit/OrderEditResult.raml +++ b/api-specs/api/types/order-edit/OrderEditResult.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#ordereditresult type: object displayName: OrderEditResult discriminator: type diff --git a/api-specs/api/types/order-edit/OrderExcerpt.raml b/api-specs/api/types/order-edit/OrderExcerpt.raml index 67ed79dfb3..15a44f2f91 100644 --- a/api-specs/api/types/order-edit/OrderExcerpt.raml +++ b/api-specs/api/types/order-edit/OrderExcerpt.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#orderexcerpt type: object displayName: OrderExcerpt description: | diff --git a/api-specs/api/types/order-edit/StagedOrder.raml b/api-specs/api/types/order-edit/StagedOrder.raml index 40197ca42f..04a3b6a82d 100644 --- a/api-specs/api/types/order-edit/StagedOrder.raml +++ b/api-specs/api/types/order-edit/StagedOrder.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits displayName: StagedOrder (actionType): StagedOrderUpdateAction type: Order diff --git a/api-specs/api/types/order-edit/updates/OrderEditAddStagedActionAction.raml b/api-specs/api/types/order-edit/updates/OrderEditAddStagedActionAction.raml index c8e9ba9eb9..ce15b364cb 100644 --- a/api-specs/api/types/order-edit/updates/OrderEditAddStagedActionAction.raml +++ b/api-specs/api/types/order-edit/updates/OrderEditAddStagedActionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#addstagedaction example: !include ../../../examples/OrderEdit/OrderEditAddStagedActionAction.json type: OrderEditUpdateAction displayName: OrderEditAddStagedActionAction diff --git a/api-specs/api/types/order-edit/updates/OrderEditSetCommentAction.raml b/api-specs/api/types/order-edit/updates/OrderEditSetCommentAction.raml index f36fcb76aa..cfbda697fa 100644 --- a/api-specs/api/types/order-edit/updates/OrderEditSetCommentAction.raml +++ b/api-specs/api/types/order-edit/updates/OrderEditSetCommentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-comment example: !include ../../../examples/OrderEdit/OrderEditSetCommentAction.json type: OrderEditUpdateAction displayName: OrderEditSetCommentAction diff --git a/api-specs/api/types/order-edit/updates/OrderEditSetCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/OrderEditSetCustomFieldAction.raml index 800a7bde2e..50e0806a89 100644 --- a/api-specs/api/types/order-edit/updates/OrderEditSetCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/OrderEditSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#setcustomfield example: !include ../../../examples/OrderEdit/OrderEditSetCustomFieldAction.json type: OrderEditUpdateAction displayName: OrderEditSetCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/OrderEditSetCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/OrderEditSetCustomTypeAction.raml index 741630b25f..97f649f65b 100644 --- a/api-specs/api/types/order-edit/updates/OrderEditSetCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/OrderEditSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#setcustom-type example: !include ../../../examples/OrderEdit/OrderEditSetCustomTypeAction.json type: OrderEditUpdateAction displayName: OrderEditSetCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/OrderEditSetKeyAction.raml b/api-specs/api/types/order-edit/updates/OrderEditSetKeyAction.raml index 810e716671..2ab31f2ac7 100644 --- a/api-specs/api/types/order-edit/updates/OrderEditSetKeyAction.raml +++ b/api-specs/api/types/order-edit/updates/OrderEditSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#setkey example: !include ../../../examples/OrderEdit/OrderEditSetKeyAction.json type: OrderEditUpdateAction displayName: OrderEditSetKeyAction diff --git a/api-specs/api/types/order-edit/updates/OrderEditSetStagedActionsAction.raml b/api-specs/api/types/order-edit/updates/OrderEditSetStagedActionsAction.raml index c768299b41..a016e33533 100644 --- a/api-specs/api/types/order-edit/updates/OrderEditSetStagedActionsAction.raml +++ b/api-specs/api/types/order-edit/updates/OrderEditSetStagedActionsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#setstagedactions example: !include ../../../examples/OrderEdit/OrderEditSetStagedActionsAction.json type: OrderEditUpdateAction displayName: OrderEditSetStagedActionsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddCustomLineItemAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddCustomLineItemAction.raml index 46378b0443..1e70e666eb 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddCustomLineItemAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddCustomLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-customlineitem example: !include ../../../examples/OrderEdit/StagedOrderAddCustomLineItemAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddCustomLineItemAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddDeliveryAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddDeliveryAction.raml index f33c452db9..10204b5360 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddDeliveryAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-delivery example: !include ../../../examples/OrderEdit/StagedOrderAddDeliveryAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddDeliveryAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddDiscountCodeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddDiscountCodeAction.raml index 9fd4936f1b..3cdb81acf8 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddDiscountCodeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-discountcode example: !include ../../../examples/OrderEdit/StagedOrderAddDiscountCodeAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddDiscountCodeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddItemShippingAddressAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddItemShippingAddressAction.raml index e6f14d59f3..0468be87fe 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddItemShippingAddressAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-itemshippingaddress example: !include ../../../examples/OrderEdit/StagedOrderAddItemShippingAddressAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddItemShippingAddressAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddLineItemAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddLineItemAction.raml index 5d7d398a77..a322d804f1 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddLineItemAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-lineitem example: !include ../../../examples/OrderEdit/StagedOrderAddLineItemAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddLineItemAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddParcelToDeliveryAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddParcelToDeliveryAction.raml index edce96eae8..05ce2e915b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddParcelToDeliveryAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddParcelToDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-parcel-to-delivery example: !include ../../../examples/OrderEdit/StagedOrderAddParcelToDeliveryAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddParcelToDeliveryAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddPaymentAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddPaymentAction.raml index 79dc04c147..d751fd9f57 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddPaymentAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddPaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-payment example: !include ../../../examples/OrderEdit/StagedOrderAddPaymentAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddPaymentAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddReturnInfoAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddReturnInfoAction.raml index 1206897d83..2a5c3c7a91 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddReturnInfoAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddReturnInfoAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-returninfo example: !include ../../../examples/OrderEdit/StagedOrderAddReturnInfoAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddReturnInfoAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderAddShoppingListAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderAddShoppingListAction.raml index 565f5faea8..eecf2a37e9 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderAddShoppingListAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderAddShoppingListAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#add-shopping-list example: !include ../../../examples/OrderEdit/StagedOrderAddShoppingListAction.json type: StagedOrderUpdateAction displayName: StagedOrderAddShoppingListAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemMoneyAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemMoneyAction.raml index ad6d7347df..422a63904c 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemMoneyAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemMoneyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-customlineitem-money example: !include ../../../examples/OrderEdit/StagedOrderChangeCustomLineItemMoneyAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeCustomLineItemMoneyAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemQuantityAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemQuantityAction.raml index 6b94602fe9..843e4a1638 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemQuantityAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeCustomLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-customlineitem-quantity example: !include ../../../examples/OrderEdit/StagedOrderChangeCustomLineItemQuantityAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeCustomLineItemQuantityAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeLineItemQuantityAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeLineItemQuantityAction.raml index e8df918687..1e4664b633 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeLineItemQuantityAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-lineitem-quantity example: !include ../../../examples/OrderEdit/StagedOrderChangeLineItemQuantityAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeLineItemQuantityAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeOrderStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeOrderStateAction.raml index 12ad66064d..12096efe64 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeOrderStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeOrderStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-orderstate example: !include ../../../examples/OrderEdit/StagedOrderChangeOrderStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeOrderStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangePaymentStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangePaymentStateAction.raml index 11a56589b7..0e7de4b853 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangePaymentStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangePaymentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-paymentstate example: !include ../../../examples/OrderEdit/StagedOrderChangePaymentStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangePaymentStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeShipmentStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeShipmentStateAction.raml index 6d1ad13472..34102fcf11 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeShipmentStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeShipmentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-shipmentstate example: !include ../../../examples/OrderEdit/StagedOrderChangeShipmentStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeShipmentStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxCalculationModeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxCalculationModeAction.raml index 86485f6aad..87ffd9445b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxCalculationModeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxCalculationModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-taxcalculationmode example: !include ../../../examples/OrderEdit/StagedOrderChangeTaxCalculationModeAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeTaxCalculationModeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxModeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxModeAction.raml index 8c172ee73f..5277f0560c 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxModeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-taxmode example: !include ../../../examples/OrderEdit/StagedOrderChangeTaxModeAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeTaxModeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxRoundingModeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxRoundingModeAction.raml index fb6026bd53..25d7843829 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxRoundingModeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderChangeTaxRoundingModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#change-tax-roundingmode example: !include ../../../examples/OrderEdit/StagedOrderChangeTaxRoundingModeAction.json type: StagedOrderUpdateAction displayName: StagedOrderChangeTaxRoundingModeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderImportCustomLineItemStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderImportCustomLineItemStateAction.raml index 0705acabaa..853b1e7baa 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderImportCustomLineItemStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderImportCustomLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#import-customlineitem-state example: !include ../../../examples/OrderEdit/StagedOrderImportCustomLineItemStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderImportCustomLineItemStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderImportLineItemStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderImportLineItemStateAction.raml index 6672d2c5e4..15f7acf8ca 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderImportLineItemStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderImportLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#import-lineitem-state example: !include ../../../examples/OrderEdit/StagedOrderImportLineItemStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderImportLineItemStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemoveCustomLineItemAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemoveCustomLineItemAction.raml index c0078fb452..c3fb0f34c2 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemoveCustomLineItemAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemoveCustomLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-customlineitem example: !include ../../../examples/OrderEdit/StagedOrderRemoveCustomLineItemAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemoveCustomLineItemAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemoveDeliveryAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemoveDeliveryAction.raml index 30fdbf667b..9a78cce834 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemoveDeliveryAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemoveDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-delivery example: !include ../../../examples/OrderEdit/StagedOrderRemoveDeliveryAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemoveDeliveryAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemoveDiscountCodeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemoveDiscountCodeAction.raml index 8113d5069c..197a5b2bf4 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemoveDiscountCodeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemoveDiscountCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-discountcode example: !include ../../../examples/OrderEdit/StagedOrderRemoveDiscountCodeAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemoveDiscountCodeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemoveItemShippingAddressAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemoveItemShippingAddressAction.raml index 44150bfb08..c6c9c5a0aa 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemoveItemShippingAddressAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemoveItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-itemshippingaddress example: !include ../../../examples/OrderEdit/StagedOrderRemoveItemShippingAddressAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemoveItemShippingAddressAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemoveLineItemAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemoveLineItemAction.raml index b30a5246fe..a11447a47a 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemoveLineItemAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemoveLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-lineitem example: !include ../../../examples/OrderEdit/StagedOrderRemoveLineItemAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemoveLineItemAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemoveParcelFromDeliveryAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemoveParcelFromDeliveryAction.raml index 4662fd8710..7fca3a8aa8 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemoveParcelFromDeliveryAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemoveParcelFromDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-parcel-from-delivery example: !include ../../../examples/OrderEdit/StagedOrderRemoveParcelFromDeliveryAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemoveParcelFromDeliveryAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderRemovePaymentAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderRemovePaymentAction.raml index 52b72bbdad..7b5fb89e52 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderRemovePaymentAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderRemovePaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#remove-payment example: !include ../../../examples/OrderEdit/StagedOrderRemovePaymentAction.json type: StagedOrderUpdateAction displayName: StagedOrderRemovePaymentAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressAction.raml index 9df0cc45c4..71a525933f 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-billing-address example: !include ../../../examples/OrderEdit/StagedOrderSetBillingAddressAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetBillingAddressAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomFieldAction.raml index df0722638d..8d8dc124a7 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-billing-address-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetBillingAddressCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetBillingAddressCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomTypeAction.raml index 5805c17d16..d8368ea1b3 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetBillingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-billing-address-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetBillingAddressCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetBillingAddressCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCountryAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCountryAction.raml index e5938d46f6..b228550268 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCountryAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCountryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-country example: !include ../../../examples/OrderEdit/StagedOrderSetCountryAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCountryAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomFieldAction.raml index c5563f7da1..6c11862e04 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomFieldAction.raml index 70b5211928..28a909b8e3 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customlineitem-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetCustomLineItemCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomLineItemCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomTypeAction.raml index be45a7ca0b..4269db570c 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customlineitem-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetCustomLineItemCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomLineItemCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemShippingDetailsAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemShippingDetailsAction.raml index 9885c7e0ee..1b616c60e6 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customlineitem-shippingdetails example: !include ../../../examples/OrderEdit/StagedOrderSetCustomLineItemShippingDetailsAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomLineItemShippingDetailsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxAmountAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxAmountAction.raml index 05166c0814..7cdc43ec4d 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxAmountAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxAmountAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customlineitem-taxamount example: !include ../../../examples/OrderEdit/StagedOrderSetCustomLineItemTaxAmountAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomLineItemTaxAmountAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxRateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxRateAction.raml index 3d49f7c0d2..f57eff610a 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxRateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomLineItemTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customlineitem-taxrate example: !include ../../../examples/OrderEdit/StagedOrderSetCustomLineItemTaxRateAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomLineItemTaxRateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomShippingMethodAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomShippingMethodAction.raml index 35d997fdff..3c8bb3a8fb 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomShippingMethodAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-custom-shipping-method example: !include ../../../examples/OrderEdit/StagedOrderSetCustomShippingMethodAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomShippingMethodAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomTypeAction.raml index c1c4ec53fb..4ac5429cfa 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerEmailAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerEmailAction.raml index b46cf2bc13..e663433d11 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerEmailAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customer-email example: !include ../../../examples/OrderEdit/StagedOrderSetCustomerEmailAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomerEmailAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerGroupAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerGroupAction.raml index f303f6819c..6374d0922d 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerGroupAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerGroupAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customer-group example: !include ../../../examples/OrderEdit/StagedOrderSetCustomerGroupAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomerGroupAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerIdAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerIdAction.raml index c3d2b52683..47677a91e5 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerIdAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetCustomerIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-customer-id example: !include ../../../examples/OrderEdit/StagedOrderSetCustomerIdAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetCustomerIdAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressAction.raml index cb0f5a043e..f2f7726216 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-delivery-address example: !include ../../../examples/OrderEdit/StagedOrderSetDeliveryAddressAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDeliveryAddressAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomFieldAction.raml index 3470d4d034..b7fd34e39f 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-delivery-address-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetDeliveryAddressCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDeliveryAddressCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomTypeAction.raml index f878bb618d..43d8b8ff60 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-delivery-address-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetDeliveryAddressCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDeliveryAddressCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomFieldAction.raml index aace086866..57db4bd62d 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-delivery-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetDeliveryCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDeliveryCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomTypeAction.raml index 123b7e7174..797865173b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-delivery-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetDeliveryCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDeliveryCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryItemsAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryItemsAction.raml index fa7e842283..2f6ac0ddd1 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryItemsAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDeliveryItemsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-delivery-items example: !include ../../../examples/OrderEdit/StagedOrderSetDeliveryItemsAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDeliveryItemsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetDirectDiscountsAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetDirectDiscountsAction.raml index 1cd83c5890..4cad34a8e8 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetDirectDiscountsAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetDirectDiscountsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-directdiscounts example: !include ../../../examples/OrderEdit/StagedOrderSetDirectDiscountsAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetDirectDiscountsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomFieldAction.raml index a2d4e1bd0b..d8c5e4472a 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-itemshipping-address-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetItemShippingAddressCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetItemShippingAddressCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomTypeAction.raml index 41d16fa9d8..3d543fa2f3 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetItemShippingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-itemshipping-address-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetItemShippingAddressCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetItemShippingAddressCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomFieldAction.raml index 56b09bf69f..84a7a5819e 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomTypeAction.raml index 0c374ea2b0..3d15b7fa31 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemDistributionChannelAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemDistributionChannelAction.raml index 467b58dea0..6e380702a2 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemDistributionChannelAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemDistributionChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/http-api-projects-order-edits#set-lineitem-distributionchannel example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemDistributionChannelAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemDistributionChannelAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemPriceAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemPriceAction.raml index 0efc746b92..cb0b48c48b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemPriceAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-price example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemPriceAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemPriceAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemShippingDetailsAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemShippingDetailsAction.raml index 14524595e0..865fcba007 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-shippingdetails example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemShippingDetailsAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemShippingDetailsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxAmountAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxAmountAction.raml index 77e6c55e7b..f402f4afa8 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxAmountAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxAmountAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-taxamount example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemTaxAmountAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemTaxAmountAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxRateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxRateAction.raml index db77de6ae3..d2c9fdb8a2 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxRateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-taxrate example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemTaxRateAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemTaxRateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTotalPriceAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTotalPriceAction.raml index f5fb04da76..571c35d108 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTotalPriceAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLineItemTotalPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-lineitem-totalprice example: !include ../../../examples/OrderEdit/StagedOrderSetLineItemTotalPriceAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLineItemTotalPriceAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetLocaleAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetLocaleAction.raml index 13f7ca6c18..900ef6a886 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetLocaleAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-locale example: !include ../../../examples/OrderEdit/StagedOrderSetLocaleAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetLocaleAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetOrderNumberAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetOrderNumberAction.raml index 2b96e9334d..44a87d845d 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetOrderNumberAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetOrderNumberAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-order-number example: !include ../../../examples/OrderEdit/StagedOrderSetOrderNumberAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetOrderNumberAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetOrderTotalTaxAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetOrderTotalTaxAction.raml index 64a2083b3e..cd59ccc92d 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetOrderTotalTaxAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetOrderTotalTaxAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-order-total-tax example: !include ../../../examples/OrderEdit/StagedOrderSetOrderTotalTaxAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetOrderTotalTaxAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomFieldAction.raml index ae9af35240..ddaa2b9b1d 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-parcel-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetParcelCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetParcelCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomTypeAction.raml index f0b51dadc3..0ae3ff8ab0 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-parcel-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetParcelCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetParcelCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelItemsAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelItemsAction.raml index 9ae75725a0..fbdc9728fc 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelItemsAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelItemsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-parcel-items example: !include ../../../examples/OrderEdit/StagedOrderSetParcelItemsAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetParcelItemsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelMeasurementsAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelMeasurementsAction.raml index edd56ec448..e99edf1acc 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelMeasurementsAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelMeasurementsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-parcel-measurements example: !include ../../../examples/OrderEdit/StagedOrderSetParcelMeasurementsAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetParcelMeasurementsAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelTrackingDataAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelTrackingDataAction.raml index 7d99d1b55a..c00cb7d886 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetParcelTrackingDataAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetParcelTrackingDataAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-parcel-tracking-data example: !include ../../../examples/OrderEdit/StagedOrderSetParcelTrackingDataAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetParcelTrackingDataAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetPurchaseOrderNumberAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetPurchaseOrderNumberAction.raml index c6673f4cdd..788a1be277 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetPurchaseOrderNumberAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetPurchaseOrderNumberAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-purchase-order-number example: !include ../../../examples/OrderEdit/StagedOrderSetPurchaseOrderNumberAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetPurchaseOrderNumberAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnInfoAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnInfoAction.raml index bd9e4a9df8..5723be35b1 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnInfoAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnInfoAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-returninfo example: !include ../../../examples/OrderEdit/StagedOrderSetReturnInfoAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetReturnInfoAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomFieldAction.raml index ba0cf14bca..f9b5d21c5b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-returnitem-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetReturnItemCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetReturnItemCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomTypeAction.raml index 0d4cc1169a..c04dfb9b4f 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-returnitem-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetReturnItemCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetReturnItemCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnPaymentStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnPaymentStateAction.raml index 4e428a68de..c07751b8f2 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnPaymentStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnPaymentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-returnpaymentstate example: !include ../../../examples/OrderEdit/StagedOrderSetReturnPaymentStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetReturnPaymentStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnShipmentStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnShipmentStateAction.raml index 381982e8dd..d583767474 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetReturnShipmentStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetReturnShipmentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-returnshipmentstate example: !include ../../../examples/OrderEdit/StagedOrderSetReturnShipmentStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetReturnShipmentStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAction.raml index 5bb7d2efbb..af01b2cca4 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-address example: !include ../../../examples/OrderEdit/StagedOrderSetShippingAddressAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingAddressAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndCustomShippingMethodAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndCustomShippingMethodAction.raml index 0b47eff775..144fa0749b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndCustomShippingMethodAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndCustomShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-address-and-custom-shipping-method example: !include ../../../examples/OrderEdit/StagedOrderSetShippingAddressAndCustomShippingMethodAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingAddressAndCustomShippingMethodAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndShippingMethodAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndShippingMethodAction.raml index 7e5f470713..14dbcb180b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndShippingMethodAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressAndShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-address-and-shipping-method example: !include ../../../examples/OrderEdit/StagedOrderSetShippingAddressAndShippingMethodAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingAddressAndShippingMethodAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomFieldAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomFieldAction.raml index acc1820576..2dbe452d2b 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomFieldAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-address-customfield example: !include ../../../examples/OrderEdit/StagedOrderSetShippingAddressCustomFieldAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingAddressCustomFieldAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomTypeAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomTypeAction.raml index 2cfe0d8181..99e7db99b0 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomTypeAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-address-custom-type example: !include ../../../examples/OrderEdit/StagedOrderSetShippingAddressCustomTypeAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingAddressCustomTypeAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodAction.raml index 35ced1ba33..5d612f8ac9 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-method example: !include ../../../examples/OrderEdit/StagedOrderSetShippingMethodAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingMethodAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxAmountAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxAmountAction.raml index 6102ce4ba3..01a140aea4 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxAmountAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxAmountAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shippingmethod-taxamount example: !include ../../../examples/OrderEdit/StagedOrderSetShippingMethodTaxAmountAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingMethodTaxAmountAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxRateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxRateAction.raml index 37cfaba2dd..2cb027bf99 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxRateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingMethodTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shippingmethod-taxrate example: !include ../../../examples/OrderEdit/StagedOrderSetShippingMethodTaxRateAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingMethodTaxRateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingRateInputAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingRateInputAction.raml index d63ea293f7..9ce6d4f284 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetShippingRateInputAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetShippingRateInputAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-shipping-rate-input example: !include ../../../examples/OrderEdit/StagedOrderSetShippingRateInputAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetShippingRateInputAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderSetStoreAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderSetStoreAction.raml index c01b89af6e..3f79372361 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderSetStoreAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderSetStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#set-store example: !include ../../../examples/OrderEdit/StagedOrderSetStoreAction.json type: StagedOrderUpdateAction displayName: StagedOrderSetStoreAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderTransitionCustomLineItemStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderTransitionCustomLineItemStateAction.raml index 8be8ae23ad..774c1f9aa0 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderTransitionCustomLineItemStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderTransitionCustomLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#transition-customlineitem-state example: !include ../../../examples/OrderEdit/StagedOrderTransitionCustomLineItemStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderTransitionCustomLineItemStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderTransitionLineItemStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderTransitionLineItemStateAction.raml index cbdb33e2db..350e2b3553 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderTransitionLineItemStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderTransitionLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#transition-lineitem-state example: !include ../../../examples/OrderEdit/StagedOrderTransitionLineItemStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderTransitionLineItemStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderTransitionStateAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderTransitionStateAction.raml index a27119baf0..fc11e2c057 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderTransitionStateAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#transition-state example: !include ../../../examples/OrderEdit/StagedOrderTransitionStateAction.json type: StagedOrderUpdateAction displayName: StagedOrderTransitionStateAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderUpdateItemShippingAddressAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderUpdateItemShippingAddressAction.raml index 87aab31140..3299bf5ac6 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderUpdateItemShippingAddressAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderUpdateItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#update-itemshippingaddress example: !include ../../../examples/OrderEdit/StagedOrderUpdateItemShippingAddressAction.json type: StagedOrderUpdateAction displayName: StagedOrderUpdateItemShippingAddressAction diff --git a/api-specs/api/types/order-edit/updates/StagedOrderUpdateSyncInfoAction.raml b/api-specs/api/types/order-edit/updates/StagedOrderUpdateSyncInfoAction.raml index 4565bfece2..d6c6f707d0 100644 --- a/api-specs/api/types/order-edit/updates/StagedOrderUpdateSyncInfoAction.raml +++ b/api-specs/api/types/order-edit/updates/StagedOrderUpdateSyncInfoAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): OrderEdit -(docs-uri): https://docs.commercetools.com/api/projects/order-edits#update-syncinfo example: !include ../../../examples/OrderEdit/StagedOrderUpdateSyncInfoAction.json type: StagedOrderUpdateAction displayName: StagedOrderUpdateSyncInfoAction diff --git a/api-specs/api/types/order-search/OrderSearchCompoundExpression.raml b/api-specs/api/types/order-search/OrderSearchCompoundExpression.raml index d52e49cb02..8842daaaa8 100644 --- a/api-specs/api/types/order-search/OrderSearchCompoundExpression.raml +++ b/api-specs/api/types/order-search/OrderSearchCompoundExpression.raml @@ -2,3 +2,4 @@ (package): Order type: OrderSearchQuery displayName: OrderSearchCompoundExpression +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/order-search/OrderSearchQueryExpression.raml b/api-specs/api/types/order-search/OrderSearchQueryExpression.raml index 53ef4bbc9b..b6499c643b 100644 --- a/api-specs/api/types/order-search/OrderSearchQueryExpression.raml +++ b/api-specs/api/types/order-search/OrderSearchQueryExpression.raml @@ -2,3 +2,4 @@ (package): Order type: OrderSearchQuery displayName: OrderSearchQueryExpression +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/order-search/OrderSearchQueryExpressionValue.raml b/api-specs/api/types/order-search/OrderSearchQueryExpressionValue.raml index 3bcbc33df9..439774ec98 100644 --- a/api-specs/api/types/order-search/OrderSearchQueryExpressionValue.raml +++ b/api-specs/api/types/order-search/OrderSearchQueryExpressionValue.raml @@ -2,6 +2,7 @@ (package): Order type: object displayName: OrderSearchQueryExpressionValue +(ignoreValidators): [PolymorphicSubtypesRule] properties: field: type: string diff --git a/api-specs/api/types/order/CustomLineItemImportDraft.raml b/api-specs/api/types/order/CustomLineItemImportDraft.raml index 31fb911604..bc3e188109 100644 --- a/api-specs/api/types/order/CustomLineItemImportDraft.raml +++ b/api-specs/api/types/order/CustomLineItemImportDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders-import#customlineitemimportdraft displayName: CustomLineItemImportDraft type: object description: | diff --git a/api-specs/api/types/order/CustomLineItemReturnItem.raml b/api-specs/api/types/order/CustomLineItemReturnItem.raml index 1105bc81f0..9151fb481b 100644 --- a/api-specs/api/types/order/CustomLineItemReturnItem.raml +++ b/api-specs/api/types/order/CustomLineItemReturnItem.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#customlineitemreturnitem displayName: CustomLineItemReturnItem type: ReturnItem discriminatorValue: CustomLineItemReturnItem diff --git a/api-specs/api/types/order/Delivery.raml b/api-specs/api/types/order/Delivery.raml index c0d85a6211..d6b15de823 100644 --- a/api-specs/api/types/order/Delivery.raml +++ b/api-specs/api/types/order/Delivery.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#delivery displayName: Delivery type: object description: | diff --git a/api-specs/api/types/order/DeliveryDraft.raml b/api-specs/api/types/order/DeliveryDraft.raml index d926fcb201..db77f4aa94 100644 --- a/api-specs/api/types/order/DeliveryDraft.raml +++ b/api-specs/api/types/order/DeliveryDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#deliverydraft displayName: DeliveryDraft type: object properties: diff --git a/api-specs/api/types/order/DeliveryItem.raml b/api-specs/api/types/order/DeliveryItem.raml index b6fea020cf..82b4364893 100644 --- a/api-specs/api/types/order/DeliveryItem.raml +++ b/api-specs/api/types/order/DeliveryItem.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#deliveryitem displayName: DeliveryItem type: object properties: diff --git a/api-specs/api/types/order/DiscountedLineItemPriceDraft.raml b/api-specs/api/types/order/DiscountedLineItemPriceDraft.raml index c2b2a11714..fa9d2ebb26 100644 --- a/api-specs/api/types/order/DiscountedLineItemPriceDraft.raml +++ b/api-specs/api/types/order/DiscountedLineItemPriceDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/projects/orders-import#discountedlineitempricedraft displayName: DiscountedLineItemPriceDraft type: object properties: @@ -9,6 +8,6 @@ properties: description: | Discounted money value. includedDiscounts: - type: DiscountedLineItemPortion[] + type: DiscountedLineItemPortionDraft[] description: | Discounts to be applied. diff --git a/api-specs/api/types/order/ItemState.raml b/api-specs/api/types/order/ItemState.raml index d3c61d8780..bd7e372b20 100644 --- a/api-specs/api/types/order/ItemState.raml +++ b/api-specs/api/types/order/ItemState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/carts#itemstate displayName: ItemState type: object properties: diff --git a/api-specs/api/types/order/LineItemImportDraft.raml b/api-specs/api/types/order/LineItemImportDraft.raml index 812778b416..11e4680dab 100644 --- a/api-specs/api/types/order/LineItemImportDraft.raml +++ b/api-specs/api/types/order/LineItemImportDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders-import#lineitemimportdraft displayName: LineItemImportDraft type: object description: | diff --git a/api-specs/api/types/order/LineItemReturnItem.raml b/api-specs/api/types/order/LineItemReturnItem.raml index edfba13277..9ecfc1a94f 100644 --- a/api-specs/api/types/order/LineItemReturnItem.raml +++ b/api-specs/api/types/order/LineItemReturnItem.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#lineitemreturnitem displayName: LineItemReturnItem type: ReturnItem discriminatorValue: LineItemReturnItem diff --git a/api-specs/api/types/order/Order.raml b/api-specs/api/types/order/Order.raml index a4ff2460e1..9a1d0e4b74 100644 --- a/api-specs/api/types/order/Order.raml +++ b/api-specs/api/types/order/Order.raml @@ -1,9 +1,9 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#order displayName: Order (updateType): OrderUpdate type: BaseResource +(ignoreValidators): [PolymorphicSubtypesRule] properties: id: (identifier): true @@ -239,9 +239,9 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Order. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Order. diff --git a/api-specs/api/types/order/OrderImportDraft.raml b/api-specs/api/types/order/OrderImportDraft.raml index c194a3f1ee..a6f3efa88d 100644 --- a/api-specs/api/types/order/OrderImportDraft.raml +++ b/api-specs/api/types/order/OrderImportDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders-import#orderimportdraft displayName: OrderImportDraft type: object description: | diff --git a/api-specs/api/types/order/OrderReference.raml b/api-specs/api/types/order/OrderReference.raml index 95209a97b9..4f26194629 100644 --- a/api-specs/api/types/order/OrderReference.raml +++ b/api-specs/api/types/order/OrderReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#orderreference type: Reference displayName: OrderReference discriminatorValue: order diff --git a/api-specs/api/types/order/OrderSearchQuery.raml b/api-specs/api/types/order/OrderSearchQuery.raml index 633f6ae680..ce63a92fb0 100644 --- a/api-specs/api/types/order/OrderSearchQuery.raml +++ b/api-specs/api/types/order/OrderSearchQuery.raml @@ -2,3 +2,4 @@ (package): Order type: object displayName: OrderSearchQuery +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/order/OrderState.raml b/api-specs/api/types/order/OrderState.raml index 2fe6e18214..440cfdb01f 100644 --- a/api-specs/api/types/order/OrderState.raml +++ b/api-specs/api/types/order/OrderState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#orderstate type: string description: | Indicates the state of the Order. diff --git a/api-specs/api/types/order/Parcel.raml b/api-specs/api/types/order/Parcel.raml index 2e8d68c3a7..97a0ea2a81 100644 --- a/api-specs/api/types/order/Parcel.raml +++ b/api-specs/api/types/order/Parcel.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#parcel displayName: Parcel type: object description: | diff --git a/api-specs/api/types/order/ParcelDraft.raml b/api-specs/api/types/order/ParcelDraft.raml index 9d0c80a9d7..73702f8ec1 100644 --- a/api-specs/api/types/order/ParcelDraft.raml +++ b/api-specs/api/types/order/ParcelDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#parceldraft displayName: ParcelDraft type: object properties: diff --git a/api-specs/api/types/order/ParcelMeasurements.raml b/api-specs/api/types/order/ParcelMeasurements.raml index 77b3901489..6d82933a59 100644 --- a/api-specs/api/types/order/ParcelMeasurements.raml +++ b/api-specs/api/types/order/ParcelMeasurements.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#parcelmeasurements displayName: ParcelMeasurements type: object properties: diff --git a/api-specs/api/types/order/PaymentInfo.raml b/api-specs/api/types/order/PaymentInfo.raml index f63b5b3ef8..3a16b6602e 100644 --- a/api-specs/api/types/order/PaymentInfo.raml +++ b/api-specs/api/types/order/PaymentInfo.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#paymentinfo displayName: PaymentInfo type: object properties: diff --git a/api-specs/api/types/order/PaymentState.raml b/api-specs/api/types/order/PaymentState.raml index d03a1e26ce..9cf61a2f87 100644 --- a/api-specs/api/types/order/PaymentState.raml +++ b/api-specs/api/types/order/PaymentState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#paymentstate type: string description: | Indicates the payment status for the Order. diff --git a/api-specs/api/types/order/ProductVariantImportDraft.raml b/api-specs/api/types/order/ProductVariantImportDraft.raml index fd8d390170..21466c68bc 100644 --- a/api-specs/api/types/order/ProductVariantImportDraft.raml +++ b/api-specs/api/types/order/ProductVariantImportDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders-import#productvariantimportdraft displayName: ProductVariantImportDraft type: object description: | diff --git a/api-specs/api/types/order/ReturnInfo.raml b/api-specs/api/types/order/ReturnInfo.raml index a14e40e2d1..3816b9a37b 100644 --- a/api-specs/api/types/order/ReturnInfo.raml +++ b/api-specs/api/types/order/ReturnInfo.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#returninfo displayName: ReturnInfo type: object description: | diff --git a/api-specs/api/types/order/ReturnItem.raml b/api-specs/api/types/order/ReturnItem.raml index 5aad04bfdd..d5af6104ff 100644 --- a/api-specs/api/types/order/ReturnItem.raml +++ b/api-specs/api/types/order/ReturnItem.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#returnitem displayName: ReturnItem discriminator: type type: object diff --git a/api-specs/api/types/order/ReturnItemDraft.raml b/api-specs/api/types/order/ReturnItemDraft.raml index be4271fb40..c9681a8a69 100644 --- a/api-specs/api/types/order/ReturnItemDraft.raml +++ b/api-specs/api/types/order/ReturnItemDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#returnitemdraft displayName: ReturnItemDraft type: object properties: diff --git a/api-specs/api/types/order/ReturnPaymentState.raml b/api-specs/api/types/order/ReturnPaymentState.raml index 082bcc6a88..2a6bdd7f4e 100644 --- a/api-specs/api/types/order/ReturnPaymentState.raml +++ b/api-specs/api/types/order/ReturnPaymentState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#returnpaymentstate type: string enum: - NonRefundable diff --git a/api-specs/api/types/order/ReturnShipmentState.raml b/api-specs/api/types/order/ReturnShipmentState.raml index 22704c0a25..b629551669 100644 --- a/api-specs/api/types/order/ReturnShipmentState.raml +++ b/api-specs/api/types/order/ReturnShipmentState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#returnshipmentstate type: string enum: - Advised diff --git a/api-specs/api/types/order/ShipmentState.raml b/api-specs/api/types/order/ShipmentState.raml index a0e6266309..bdfcf4a0c2 100644 --- a/api-specs/api/types/order/ShipmentState.raml +++ b/api-specs/api/types/order/ShipmentState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#shipmentstate type: string description: | Indicates the shipment status of the Order. diff --git a/api-specs/api/types/order/ShippingInfoImportDraft.raml b/api-specs/api/types/order/ShippingInfoImportDraft.raml index df875dad19..676c0680c2 100644 --- a/api-specs/api/types/order/ShippingInfoImportDraft.raml +++ b/api-specs/api/types/order/ShippingInfoImportDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders-import#shippinginfoimportdraft displayName: ShippingInfoImportDraft type: object description: | diff --git a/api-specs/api/types/order/SyncInfo.raml b/api-specs/api/types/order/SyncInfo.raml index 97a5ab6534..c4dac9c566 100644 --- a/api-specs/api/types/order/SyncInfo.raml +++ b/api-specs/api/types/order/SyncInfo.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#syncinfo displayName: SyncInfo type: object description: | diff --git a/api-specs/api/types/order/TrackingData.raml b/api-specs/api/types/order/TrackingData.raml index 47b24969f9..4b00337296 100644 --- a/api-specs/api/types/order/TrackingData.raml +++ b/api-specs/api/types/order/TrackingData.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/http/api/projects/orders#trackingdata displayName: TrackingData type: object description: | diff --git a/api-specs/api/types/order/updates/OrderAddDeliveryAction.raml b/api-specs/api/types/order/updates/OrderAddDeliveryAction.raml index 62aa3e0847..43830b5291 100644 --- a/api-specs/api/types/order/updates/OrderAddDeliveryAction.raml +++ b/api-specs/api/types/order/updates/OrderAddDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#add-delivery example: !include ../../../examples/Order/OrderAddDeliveryAction.json type: OrderUpdateAction displayName: OrderAddDeliveryAction diff --git a/api-specs/api/types/order/updates/OrderAddItemShippingAddressAction.raml b/api-specs/api/types/order/updates/OrderAddItemShippingAddressAction.raml index a0055b8740..7e0358d93a 100644 --- a/api-specs/api/types/order/updates/OrderAddItemShippingAddressAction.raml +++ b/api-specs/api/types/order/updates/OrderAddItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#add-itemshippingaddress example: !include ../../../examples/Order/OrderAddItemShippingAddressAction.json type: OrderUpdateAction displayName: OrderAddItemShippingAddressAction diff --git a/api-specs/api/types/order/updates/OrderAddParcelToDeliveryAction.raml b/api-specs/api/types/order/updates/OrderAddParcelToDeliveryAction.raml index 12ede3c08d..a3405d0628 100644 --- a/api-specs/api/types/order/updates/OrderAddParcelToDeliveryAction.raml +++ b/api-specs/api/types/order/updates/OrderAddParcelToDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#add-parcel-to-delivery example: !include ../../../examples/Order/OrderAddParcelToDeliveryAction.json type: OrderUpdateAction displayName: OrderAddParcelToDeliveryAction diff --git a/api-specs/api/types/order/updates/OrderAddPaymentAction.raml b/api-specs/api/types/order/updates/OrderAddPaymentAction.raml index 1d4fe6c648..aa18f6a1b6 100644 --- a/api-specs/api/types/order/updates/OrderAddPaymentAction.raml +++ b/api-specs/api/types/order/updates/OrderAddPaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#add-payment example: !include ../../../examples/Order/OrderAddPaymentAction.json type: OrderUpdateAction displayName: OrderAddPaymentAction diff --git a/api-specs/api/types/order/updates/OrderAddReturnInfoAction.raml b/api-specs/api/types/order/updates/OrderAddReturnInfoAction.raml index f4f06b572d..bb288bf977 100644 --- a/api-specs/api/types/order/updates/OrderAddReturnInfoAction.raml +++ b/api-specs/api/types/order/updates/OrderAddReturnInfoAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#add-returninfo example: !include ../../../examples/Order/OrderAddReturnInfoAction.json type: OrderUpdateAction displayName: OrderAddReturnInfoAction diff --git a/api-specs/api/types/order/updates/OrderChangeOrderStateAction.raml b/api-specs/api/types/order/updates/OrderChangeOrderStateAction.raml index f1ad66b00f..64eb019cd8 100644 --- a/api-specs/api/types/order/updates/OrderChangeOrderStateAction.raml +++ b/api-specs/api/types/order/updates/OrderChangeOrderStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#change-orderstate example: !include ../../../examples/Order/OrderChangeOrderStateAction.json type: OrderUpdateAction displayName: OrderChangeOrderStateAction diff --git a/api-specs/api/types/order/updates/OrderChangePaymentStateAction.raml b/api-specs/api/types/order/updates/OrderChangePaymentStateAction.raml index 3a769a926e..28e15ddcce 100644 --- a/api-specs/api/types/order/updates/OrderChangePaymentStateAction.raml +++ b/api-specs/api/types/order/updates/OrderChangePaymentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#change-paymentstate example: !include ../../../examples/Order/OrderChangePaymentStateAction.json type: OrderUpdateAction displayName: OrderChangePaymentStateAction diff --git a/api-specs/api/types/order/updates/OrderChangeShipmentStateAction.raml b/api-specs/api/types/order/updates/OrderChangeShipmentStateAction.raml index 29063bccaa..d12f74a029 100644 --- a/api-specs/api/types/order/updates/OrderChangeShipmentStateAction.raml +++ b/api-specs/api/types/order/updates/OrderChangeShipmentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#change-shipmentstate example: !include ../../../examples/Order/OrderChangeShipmentStateAction.json type: OrderUpdateAction displayName: OrderChangeShipmentStateAction diff --git a/api-specs/api/types/order/updates/OrderImportCustomLineItemStateAction.raml b/api-specs/api/types/order/updates/OrderImportCustomLineItemStateAction.raml index 881f6c6076..5eb421d21d 100644 --- a/api-specs/api/types/order/updates/OrderImportCustomLineItemStateAction.raml +++ b/api-specs/api/types/order/updates/OrderImportCustomLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#import-customlineitem-state example: !include ../../../examples/Order/OrderImportCustomLineItemStateAction.json type: OrderUpdateAction displayName: OrderImportCustomLineItemStateAction diff --git a/api-specs/api/types/order/updates/OrderImportLineItemStateAction.raml b/api-specs/api/types/order/updates/OrderImportLineItemStateAction.raml index a44f7991bb..8a1315a2ed 100644 --- a/api-specs/api/types/order/updates/OrderImportLineItemStateAction.raml +++ b/api-specs/api/types/order/updates/OrderImportLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#import-lineitem-state example: !include ../../../examples/Order/OrderImportLineItemStateAction.json type: OrderUpdateAction displayName: OrderImportLineItemStateAction diff --git a/api-specs/api/types/order/updates/OrderRemoveDeliveryAction.raml b/api-specs/api/types/order/updates/OrderRemoveDeliveryAction.raml index ca852cdfd1..d69e452d69 100644 --- a/api-specs/api/types/order/updates/OrderRemoveDeliveryAction.raml +++ b/api-specs/api/types/order/updates/OrderRemoveDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#remove-delivery example: !include ../../../examples/Order/OrderRemoveDeliveryAction.json type: OrderUpdateAction displayName: OrderRemoveDeliveryAction diff --git a/api-specs/api/types/order/updates/OrderRemoveItemShippingAddressAction.raml b/api-specs/api/types/order/updates/OrderRemoveItemShippingAddressAction.raml index 58c91e81e6..adc5df2a6e 100644 --- a/api-specs/api/types/order/updates/OrderRemoveItemShippingAddressAction.raml +++ b/api-specs/api/types/order/updates/OrderRemoveItemShippingAddressAction.raml @@ -1,12 +1,12 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#remove-itemshippingaddress example: !include ../../../examples/Order/OrderRemoveItemShippingAddressAction.json type: OrderUpdateAction displayName: OrderRemoveItemShippingAddressAction discriminatorValue: removeItemShippingAddress description: | An address can only be removed if it is not referenced in any [ItemShippingTarget](ctp:api:type:ItemShippingTarget) of the Cart. + In such case, change the Line Item shipping address to a different `addressKey` first using the [Set LineItemShippingDetails](ctp:api:type:OrderSetLineItemShippingDetailsAction) update action, before you remove the obsolete address. properties: addressKey: type: string diff --git a/api-specs/api/types/order/updates/OrderRemoveParcelFromDeliveryAction.raml b/api-specs/api/types/order/updates/OrderRemoveParcelFromDeliveryAction.raml index 44e0f5ac57..bf686e11dc 100644 --- a/api-specs/api/types/order/updates/OrderRemoveParcelFromDeliveryAction.raml +++ b/api-specs/api/types/order/updates/OrderRemoveParcelFromDeliveryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#remove-parcel-from-delivery example: !include ../../../examples/Order/OrderRemoveParcelFromDeliveryAction.json type: OrderUpdateAction displayName: OrderRemoveParcelFromDeliveryAction diff --git a/api-specs/api/types/order/updates/OrderRemovePaymentAction.raml b/api-specs/api/types/order/updates/OrderRemovePaymentAction.raml index 11581570a3..7893478745 100644 --- a/api-specs/api/types/order/updates/OrderRemovePaymentAction.raml +++ b/api-specs/api/types/order/updates/OrderRemovePaymentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#remove-payment example: !include ../../../examples/Order/OrderRemovePaymentAction.json type: OrderUpdateAction displayName: OrderRemovePaymentAction diff --git a/api-specs/api/types/order/updates/OrderSetBillingAddressAction.raml b/api-specs/api/types/order/updates/OrderSetBillingAddressAction.raml index 6f1328e1b4..af18d73bf0 100644 --- a/api-specs/api/types/order/updates/OrderSetBillingAddressAction.raml +++ b/api-specs/api/types/order/updates/OrderSetBillingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-billing-address example: !include ../../../examples/Order/OrderSetBillingAddressAction.json type: OrderUpdateAction displayName: OrderSetBillingAddressAction diff --git a/api-specs/api/types/order/updates/OrderSetBillingAddressCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetBillingAddressCustomFieldAction.raml index d98d2c78c9..e76a468e8b 100644 --- a/api-specs/api/types/order/updates/OrderSetBillingAddressCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetBillingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-billing-address-customfield example: !include ../../../examples/Order/OrderSetBillingAddressCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetBillingAddressCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetBillingAddressCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetBillingAddressCustomTypeAction.raml index d015b68cf0..852055b911 100644 --- a/api-specs/api/types/order/updates/OrderSetBillingAddressCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetBillingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-billing-address-custom-type example: !include ../../../examples/Order/OrderSetBillingAddressCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetBillingAddressCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetCustomFieldAction.raml index 861f50933f..7be69b9dc2 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-customfield example: !include ../../../examples/Order/OrderSetCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomFieldAction.raml index adc982e208..cf5e9f5304 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-customlineitem-customfield example: !include ../../../examples/Order/OrderSetCustomLineItemCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetCustomLineItemCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomTypeAction.raml index af16dbdeea..16f680b93a 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-customlineitem-custom-type example: !include ../../../examples/Order/OrderSetCustomLineItemCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetCustomLineItemCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomLineItemShippingDetailsAction.raml b/api-specs/api/types/order/updates/OrderSetCustomLineItemShippingDetailsAction.raml index 283b0e0850..5ba992e9ae 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-customlineitem-shippingdetails example: !include ../../../examples/Order/OrderSetCustomLineItemShippingDetailsAction.json type: OrderUpdateAction displayName: OrderSetCustomLineItemShippingDetailsAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetCustomTypeAction.raml index c035f3ed85..a34b325b49 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-custom-type example: !include ../../../examples/Order/OrderSetCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomerEmailAction.raml b/api-specs/api/types/order/updates/OrderSetCustomerEmailAction.raml index 696c3d589a..900798df76 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomerEmailAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomerEmailAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-customer-email example: !include ../../../examples/Order/OrderSetCustomerEmailAction.json type: OrderUpdateAction displayName: OrderSetCustomerEmailAction diff --git a/api-specs/api/types/order/updates/OrderSetCustomerIdAction.raml b/api-specs/api/types/order/updates/OrderSetCustomerIdAction.raml index b988454519..4af90088d4 100644 --- a/api-specs/api/types/order/updates/OrderSetCustomerIdAction.raml +++ b/api-specs/api/types/order/updates/OrderSetCustomerIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-customer-id example: !include ../../../examples/Order/OrderSetCustomerIdAction.json type: OrderUpdateAction displayName: OrderSetCustomerIdAction diff --git a/api-specs/api/types/order/updates/OrderSetDeliveryAddressAction.raml b/api-specs/api/types/order/updates/OrderSetDeliveryAddressAction.raml index 66b966e44c..be25de2b09 100644 --- a/api-specs/api/types/order/updates/OrderSetDeliveryAddressAction.raml +++ b/api-specs/api/types/order/updates/OrderSetDeliveryAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-delivery-address example: !include ../../../examples/Order/OrderSetDeliveryAddressAction.json type: OrderUpdateAction displayName: OrderSetDeliveryAddressAction diff --git a/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomFieldAction.raml index ea06af74c5..2594ce836e 100644 --- a/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-delivery-address-customfield example: !include ../../../examples/Order/OrderSetDeliveryAddressCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetDeliveryAddressCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomTypeAction.raml index 71a25f5316..43a998292a 100644 --- a/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetDeliveryAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-delivery-address-custom-type example: !include ../../../examples/Order/OrderSetDeliveryAddressCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetDeliveryAddressCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetDeliveryCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetDeliveryCustomFieldAction.raml index 973d2ef841..7bf751556e 100644 --- a/api-specs/api/types/order/updates/OrderSetDeliveryCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetDeliveryCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-delivery-customfield example: !include ../../../examples/Order/OrderSetDeliveryCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetDeliveryCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetDeliveryCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetDeliveryCustomTypeAction.raml index 6288e32498..e5b8599bd7 100644 --- a/api-specs/api/types/order/updates/OrderSetDeliveryCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetDeliveryCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-delivery-custom-type example: !include ../../../examples/Order/OrderSetDeliveryCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetDeliveryCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetDeliveryItemsAction.raml b/api-specs/api/types/order/updates/OrderSetDeliveryItemsAction.raml index 65adbfa7d4..decaf2d523 100644 --- a/api-specs/api/types/order/updates/OrderSetDeliveryItemsAction.raml +++ b/api-specs/api/types/order/updates/OrderSetDeliveryItemsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-delivery-items example: !include ../../../examples/Order/OrderSetDeliveryItemsAction.json type: OrderUpdateAction displayName: OrderSetDeliveryItemsAction diff --git a/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomFieldAction.raml index 99812c998f..2c058b3c3b 100644 --- a/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-itemshipping-address-customfield example: !include ../../../examples/Order/OrderSetItemShippingAddressCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetItemShippingAddressCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomTypeAction.raml index 9fc35bcfe8..f2ee192dd5 100644 --- a/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetItemShippingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-itemshipping-address-custom-type example: !include ../../../examples/Order/OrderSetItemShippingAddressCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetItemShippingAddressCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetLineItemCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetLineItemCustomFieldAction.raml index 56aba6910d..39def0b01c 100644 --- a/api-specs/api/types/order/updates/OrderSetLineItemCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-lineitem-customfield example: !include ../../../examples/Order/OrderSetLineItemCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetLineItemCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetLineItemCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetLineItemCustomTypeAction.raml index aef789d883..b52f010653 100644 --- a/api-specs/api/types/order/updates/OrderSetLineItemCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-lineitem-custom-type example: !include ../../../examples/Order/OrderSetLineItemCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetLineItemCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetLineItemShippingDetailsAction.raml b/api-specs/api/types/order/updates/OrderSetLineItemShippingDetailsAction.raml index 255d80a664..6fd40b253e 100644 --- a/api-specs/api/types/order/updates/OrderSetLineItemShippingDetailsAction.raml +++ b/api-specs/api/types/order/updates/OrderSetLineItemShippingDetailsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-lineitem-shippingdetails example: !include ../../../examples/Order/OrderSetLineItemShippingDetailsAction.json type: OrderUpdateAction displayName: OrderSetLineItemShippingDetailsAction diff --git a/api-specs/api/types/order/updates/OrderSetLocaleAction.raml b/api-specs/api/types/order/updates/OrderSetLocaleAction.raml index 89f055a80e..ed8dff0e87 100644 --- a/api-specs/api/types/order/updates/OrderSetLocaleAction.raml +++ b/api-specs/api/types/order/updates/OrderSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-locale example: !include ../../../examples/Order/OrderSetLocaleAction.json type: OrderUpdateAction displayName: OrderSetLocaleAction diff --git a/api-specs/api/types/order/updates/OrderSetOrderNumberAction.raml b/api-specs/api/types/order/updates/OrderSetOrderNumberAction.raml index bd56b40cc1..1fbaef777c 100644 --- a/api-specs/api/types/order/updates/OrderSetOrderNumberAction.raml +++ b/api-specs/api/types/order/updates/OrderSetOrderNumberAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-order-number example: !include ../../../examples/Order/OrderSetOrderNumberAction.json type: OrderUpdateAction displayName: OrderSetOrderNumberAction diff --git a/api-specs/api/types/order/updates/OrderSetParcelCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetParcelCustomFieldAction.raml index c0c44af131..c4937be65e 100644 --- a/api-specs/api/types/order/updates/OrderSetParcelCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetParcelCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-parcel-customfield example: !include ../../../examples/Order/OrderSetParcelCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetParcelCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetParcelCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetParcelCustomTypeAction.raml index 0ba1e63d83..06cab7c9b1 100644 --- a/api-specs/api/types/order/updates/OrderSetParcelCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetParcelCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-parcel-custom-type example: !include ../../../examples/Order/OrderSetParcelCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetParcelCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetParcelItemsAction.raml b/api-specs/api/types/order/updates/OrderSetParcelItemsAction.raml index e28bb938e3..f425d5754f 100644 --- a/api-specs/api/types/order/updates/OrderSetParcelItemsAction.raml +++ b/api-specs/api/types/order/updates/OrderSetParcelItemsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-parcel-items example: !include ../../../examples/Order/OrderSetParcelItemsAction.json type: OrderUpdateAction displayName: OrderSetParcelItemsAction diff --git a/api-specs/api/types/order/updates/OrderSetParcelMeasurementsAction.raml b/api-specs/api/types/order/updates/OrderSetParcelMeasurementsAction.raml index da85875797..b15f16f05d 100644 --- a/api-specs/api/types/order/updates/OrderSetParcelMeasurementsAction.raml +++ b/api-specs/api/types/order/updates/OrderSetParcelMeasurementsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-parcel-measurements example: !include ../../../examples/Order/OrderSetParcelMeasurementsAction.json type: OrderUpdateAction displayName: OrderSetParcelMeasurementsAction diff --git a/api-specs/api/types/order/updates/OrderSetParcelTrackingDataAction.raml b/api-specs/api/types/order/updates/OrderSetParcelTrackingDataAction.raml index 59a6a8df99..cc01f458da 100644 --- a/api-specs/api/types/order/updates/OrderSetParcelTrackingDataAction.raml +++ b/api-specs/api/types/order/updates/OrderSetParcelTrackingDataAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-parcel-tracking-data example: !include ../../../examples/Order/OrderSetParcelTrackingDataAction.json type: OrderUpdateAction displayName: OrderSetParcelTrackingDataAction diff --git a/api-specs/api/types/order/updates/OrderSetPurchaseOrderNumberAction.raml b/api-specs/api/types/order/updates/OrderSetPurchaseOrderNumberAction.raml index 36b8435660..9b85f84e28 100644 --- a/api-specs/api/types/order/updates/OrderSetPurchaseOrderNumberAction.raml +++ b/api-specs/api/types/order/updates/OrderSetPurchaseOrderNumberAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-purchase-order-number example: !include ../../../examples/Order/OrderSetPurchaseOrderNumberAction.json type: OrderUpdateAction displayName: OrderSetPurchaseOrderNumberAction diff --git a/api-specs/api/types/order/updates/OrderSetReturnInfoAction.raml b/api-specs/api/types/order/updates/OrderSetReturnInfoAction.raml index 94a0d83399..a9fad3f7ab 100644 --- a/api-specs/api/types/order/updates/OrderSetReturnInfoAction.raml +++ b/api-specs/api/types/order/updates/OrderSetReturnInfoAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/http-api-projects-order.html#set-returninfo example: !include ../../../examples/Order/OrderSetReturnInfoAction.json type: OrderUpdateAction displayName: OrderSetReturnInfoAction diff --git a/api-specs/api/types/order/updates/OrderSetReturnItemCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetReturnItemCustomFieldAction.raml index 01f63da0b9..ab63355cee 100644 --- a/api-specs/api/types/order/updates/OrderSetReturnItemCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetReturnItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-returnitem-customfield example: !include ../../../examples/Order/OrderSetReturnItemCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetReturnItemCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetReturnItemCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetReturnItemCustomTypeAction.raml index b6217ea345..eec8762859 100644 --- a/api-specs/api/types/order/updates/OrderSetReturnItemCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetReturnItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-returnitem-custom-type example: !include ../../../examples/Order/OrderSetReturnItemCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetReturnItemCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetReturnPaymentStateAction.raml b/api-specs/api/types/order/updates/OrderSetReturnPaymentStateAction.raml index cddbad29f4..9b3b9d4db3 100644 --- a/api-specs/api/types/order/updates/OrderSetReturnPaymentStateAction.raml +++ b/api-specs/api/types/order/updates/OrderSetReturnPaymentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-returnpaymentstate example: !include ../../../examples/Order/OrderSetReturnPaymentStateAction.json type: OrderUpdateAction displayName: OrderSetReturnPaymentStateAction diff --git a/api-specs/api/types/order/updates/OrderSetReturnShipmentStateAction.raml b/api-specs/api/types/order/updates/OrderSetReturnShipmentStateAction.raml index c913c6d9ab..e9ff7382c2 100644 --- a/api-specs/api/types/order/updates/OrderSetReturnShipmentStateAction.raml +++ b/api-specs/api/types/order/updates/OrderSetReturnShipmentStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-returnshipmentstate example: !include ../../../examples/Order/OrderSetReturnShipmentStateAction.json type: OrderUpdateAction displayName: OrderSetReturnShipmentStateAction diff --git a/api-specs/api/types/order/updates/OrderSetShippingAddressAction.raml b/api-specs/api/types/order/updates/OrderSetShippingAddressAction.raml index 30699368d8..c8a72606ca 100644 --- a/api-specs/api/types/order/updates/OrderSetShippingAddressAction.raml +++ b/api-specs/api/types/order/updates/OrderSetShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-shipping-address example: !include ../../../examples/Order/OrderSetShippingAddressAction.json type: OrderUpdateAction displayName: OrderSetShippingAddressAction diff --git a/api-specs/api/types/order/updates/OrderSetShippingAddressCustomFieldAction.raml b/api-specs/api/types/order/updates/OrderSetShippingAddressCustomFieldAction.raml index bdab2fc720..dc05db99f1 100644 --- a/api-specs/api/types/order/updates/OrderSetShippingAddressCustomFieldAction.raml +++ b/api-specs/api/types/order/updates/OrderSetShippingAddressCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-shipping-address-customfield example: !include ../../../examples/Order/OrderSetShippingAddressCustomFieldAction.json type: OrderUpdateAction displayName: OrderSetShippingAddressCustomFieldAction diff --git a/api-specs/api/types/order/updates/OrderSetShippingAddressCustomTypeAction.raml b/api-specs/api/types/order/updates/OrderSetShippingAddressCustomTypeAction.raml index ddbe6dc74e..fbe0693e56 100644 --- a/api-specs/api/types/order/updates/OrderSetShippingAddressCustomTypeAction.raml +++ b/api-specs/api/types/order/updates/OrderSetShippingAddressCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-shipping-address-custom-type example: !include ../../../examples/Order/OrderSetShippingAddressCustomTypeAction.json type: OrderUpdateAction displayName: OrderSetShippingAddressCustomTypeAction diff --git a/api-specs/api/types/order/updates/OrderSetStoreAction.raml b/api-specs/api/types/order/updates/OrderSetStoreAction.raml index d088de32bb..571a4a7a88 100644 --- a/api-specs/api/types/order/updates/OrderSetStoreAction.raml +++ b/api-specs/api/types/order/updates/OrderSetStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#set-store example: !include ../../../examples/Order/OrderSetStoreAction.json type: OrderUpdateAction displayName: OrderSetStoreAction diff --git a/api-specs/api/types/order/updates/OrderTransitionCustomLineItemStateAction.raml b/api-specs/api/types/order/updates/OrderTransitionCustomLineItemStateAction.raml index b88a9c3c6e..ad61f76da4 100644 --- a/api-specs/api/types/order/updates/OrderTransitionCustomLineItemStateAction.raml +++ b/api-specs/api/types/order/updates/OrderTransitionCustomLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#transition-customlineitem-state example: !include ../../../examples/Order/OrderTransitionCustomLineItemStateAction.json type: OrderUpdateAction displayName: OrderTransitionCustomLineItemStateAction diff --git a/api-specs/api/types/order/updates/OrderTransitionLineItemStateAction.raml b/api-specs/api/types/order/updates/OrderTransitionLineItemStateAction.raml index e299eba360..a0f157a9e4 100644 --- a/api-specs/api/types/order/updates/OrderTransitionLineItemStateAction.raml +++ b/api-specs/api/types/order/updates/OrderTransitionLineItemStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#transition-lineitem-state example: !include ../../../examples/Order/OrderTransitionLineItemStateAction.json type: OrderUpdateAction displayName: OrderTransitionLineItemStateAction diff --git a/api-specs/api/types/order/updates/OrderTransitionStateAction.raml b/api-specs/api/types/order/updates/OrderTransitionStateAction.raml index 549a2137ab..f460095e68 100644 --- a/api-specs/api/types/order/updates/OrderTransitionStateAction.raml +++ b/api-specs/api/types/order/updates/OrderTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#transition-state example: !include ../../../examples/Order/OrderTransitionStateAction.json type: OrderUpdateAction displayName: OrderTransitionStateAction diff --git a/api-specs/api/types/order/updates/OrderUpdateItemShippingAddressAction.raml b/api-specs/api/types/order/updates/OrderUpdateItemShippingAddressAction.raml index aac9fa4df3..c23a0a024d 100644 --- a/api-specs/api/types/order/updates/OrderUpdateItemShippingAddressAction.raml +++ b/api-specs/api/types/order/updates/OrderUpdateItemShippingAddressAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#update-itemshippingaddress example: !include ../../../examples/Order/OrderUpdateItemShippingAddressAction.json type: OrderUpdateAction displayName: OrderUpdateItemShippingAddressAction diff --git a/api-specs/api/types/order/updates/OrderUpdateSyncInfoAction.raml b/api-specs/api/types/order/updates/OrderUpdateSyncInfoAction.raml index f59793b92b..71b27140b7 100644 --- a/api-specs/api/types/order/updates/OrderUpdateSyncInfoAction.raml +++ b/api-specs/api/types/order/updates/OrderUpdateSyncInfoAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Order -(docs-uri): https://docs.commercetools.com/api/projects/orders#update-syncinfo example: !include ../../../examples/Order/OrderUpdateSyncInfoAction.json type: OrderUpdateAction displayName: OrderUpdateSyncInfoAction diff --git a/api-specs/api/types/payment/Payment.raml b/api-specs/api/types/payment/Payment.raml index 50afef3f87..159b4fbb13 100644 --- a/api-specs/api/types/payment/Payment.raml +++ b/api-specs/api/types/payment/Payment.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#payment type: BaseResource displayName: Payment (updateType): PaymentUpdate @@ -23,12 +22,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Payment. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Payment. customer?: type: CustomerReference description: | @@ -40,7 +39,7 @@ properties: externalId?: (deprecated): true type: string - description: Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + description: Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP). interfaceId?: type: string description: |- diff --git a/api-specs/api/types/payment/PaymentDraft.raml b/api-specs/api/types/payment/PaymentDraft.raml index 4d92271da4..2c9170b867 100644 --- a/api-specs/api/types/payment/PaymentDraft.raml +++ b/api-specs/api/types/payment/PaymentDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#paymentdraft type: object displayName: PaymentDraft properties: @@ -13,7 +12,7 @@ properties: [Anonymous session](ctp:api:type:AnonymousSession) associated with the Payment. externalId?: (deprecated): true - description: Additional identifier for external systems like Customer Relationship Management (CRM) or Enterprise Resource Planning (ERP). + description: Additional identifier for external systems like customer relationship management (CRM) or enterprise resource planning (ERP). type: string interfaceId?: type: string diff --git a/api-specs/api/types/payment/PaymentMethodInfo.raml b/api-specs/api/types/payment/PaymentMethodInfo.raml index 8f875fd397..111c84711d 100644 --- a/api-specs/api/types/payment/PaymentMethodInfo.raml +++ b/api-specs/api/types/payment/PaymentMethodInfo.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#paymentmethodinfo type: object displayName: PaymentMethodInfo properties: diff --git a/api-specs/api/types/payment/PaymentReference.raml b/api-specs/api/types/payment/PaymentReference.raml index 6309473dab..5d3434cdd6 100644 --- a/api-specs/api/types/payment/PaymentReference.raml +++ b/api-specs/api/types/payment/PaymentReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#paymentreference type: Reference displayName: PaymentReference discriminatorValue: payment diff --git a/api-specs/api/types/payment/PaymentResourceIdentifier.raml b/api-specs/api/types/payment/PaymentResourceIdentifier.raml index 5e657a7c83..d92fa51b7a 100644 --- a/api-specs/api/types/payment/PaymentResourceIdentifier.raml +++ b/api-specs/api/types/payment/PaymentResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#paymentresourceidentifier type: ResourceIdentifier displayName: PaymentResourceIdentifier discriminatorValue: payment diff --git a/api-specs/api/types/payment/PaymentStatus.raml b/api-specs/api/types/payment/PaymentStatus.raml index 93ad446eec..ab3e1edb58 100644 --- a/api-specs/api/types/payment/PaymentStatus.raml +++ b/api-specs/api/types/payment/PaymentStatus.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#paymentstatus type: object displayName: PaymentStatus properties: diff --git a/api-specs/api/types/payment/PaymentStatusDraft.raml b/api-specs/api/types/payment/PaymentStatusDraft.raml index e1c93b3f60..534a8f0a82 100644 --- a/api-specs/api/types/payment/PaymentStatusDraft.raml +++ b/api-specs/api/types/payment/PaymentStatusDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#paymentstatusdraft type: object displayName: PaymentStatusDraft properties: diff --git a/api-specs/api/types/payment/Transaction.raml b/api-specs/api/types/payment/Transaction.raml index 5be4a9581e..327c8dc4fb 100644 --- a/api-specs/api/types/payment/Transaction.raml +++ b/api-specs/api/types/payment/Transaction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#transaction type: object displayName: Transaction description: | diff --git a/api-specs/api/types/payment/TransactionState.raml b/api-specs/api/types/payment/TransactionState.raml index f7fa66141b..b07dbedfa5 100644 --- a/api-specs/api/types/payment/TransactionState.raml +++ b/api-specs/api/types/payment/TransactionState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#transactionstate displayName: TransactionState description: | Transactions can be in one of the following States: diff --git a/api-specs/api/types/payment/TransactionType.raml b/api-specs/api/types/payment/TransactionType.raml index 5fbc1b905f..5eb081b40a 100644 --- a/api-specs/api/types/payment/TransactionType.raml +++ b/api-specs/api/types/payment/TransactionType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#transactiontype displayName: TransactionType type: string enum: diff --git a/api-specs/api/types/payment/updates/PaymentAddInterfaceInteractionAction.raml b/api-specs/api/types/payment/updates/PaymentAddInterfaceInteractionAction.raml index 2806e38ccd..c5dddc1c41 100644 --- a/api-specs/api/types/payment/updates/PaymentAddInterfaceInteractionAction.raml +++ b/api-specs/api/types/payment/updates/PaymentAddInterfaceInteractionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#add-interfaceinteraction type: PaymentUpdateAction displayName: PaymentAddInterfaceInteractionAction discriminatorValue: addInterfaceInteraction diff --git a/api-specs/api/types/payment/updates/PaymentAddTransactionAction.raml b/api-specs/api/types/payment/updates/PaymentAddTransactionAction.raml index 6366c191cc..8b46555da1 100644 --- a/api-specs/api/types/payment/updates/PaymentAddTransactionAction.raml +++ b/api-specs/api/types/payment/updates/PaymentAddTransactionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#add-transaction type: PaymentUpdateAction displayName: PaymentAddTransactionAction discriminatorValue: addTransaction diff --git a/api-specs/api/types/payment/updates/PaymentChangeAmountPlannedAction.raml b/api-specs/api/types/payment/updates/PaymentChangeAmountPlannedAction.raml index eec99fb034..8783080ad7 100644 --- a/api-specs/api/types/payment/updates/PaymentChangeAmountPlannedAction.raml +++ b/api-specs/api/types/payment/updates/PaymentChangeAmountPlannedAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#change-amountplanned type: PaymentUpdateAction displayName: PaymentChangeAmountPlannedAction discriminatorValue: changeAmountPlanned diff --git a/api-specs/api/types/payment/updates/PaymentChangeTransactionInteractionIdAction.raml b/api-specs/api/types/payment/updates/PaymentChangeTransactionInteractionIdAction.raml index bf287044ea..9172f34186 100644 --- a/api-specs/api/types/payment/updates/PaymentChangeTransactionInteractionIdAction.raml +++ b/api-specs/api/types/payment/updates/PaymentChangeTransactionInteractionIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#change-transactioninteractionid type: PaymentUpdateAction displayName: PaymentChangeTransactionInteractionIdAction discriminatorValue: changeTransactionInteractionId diff --git a/api-specs/api/types/payment/updates/PaymentChangeTransactionStateAction.raml b/api-specs/api/types/payment/updates/PaymentChangeTransactionStateAction.raml index fca7f5d578..7e9bb6508e 100644 --- a/api-specs/api/types/payment/updates/PaymentChangeTransactionStateAction.raml +++ b/api-specs/api/types/payment/updates/PaymentChangeTransactionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#change-transactionstate type: PaymentUpdateAction displayName: PaymentChangeTransactionStateAction discriminatorValue: changeTransactionState diff --git a/api-specs/api/types/payment/updates/PaymentChangeTransactionTimestampAction.raml b/api-specs/api/types/payment/updates/PaymentChangeTransactionTimestampAction.raml index 60f7d761c2..5505347430 100644 --- a/api-specs/api/types/payment/updates/PaymentChangeTransactionTimestampAction.raml +++ b/api-specs/api/types/payment/updates/PaymentChangeTransactionTimestampAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#change-transactiontimestamp type: PaymentUpdateAction displayName: PaymentChangeTransactionTimestampAction discriminatorValue: changeTransactionTimestamp diff --git a/api-specs/api/types/payment/updates/PaymentSetAmountPaidAction.raml b/api-specs/api/types/payment/updates/PaymentSetAmountPaidAction.raml index b50d407058..3fc100ffc3 100644 --- a/api-specs/api/types/payment/updates/PaymentSetAmountPaidAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetAmountPaidAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-amountpaid (deprecated): true type: PaymentUpdateAction displayName: PaymentSetAmountPaidAction diff --git a/api-specs/api/types/payment/updates/PaymentSetAmountRefundedAction.raml b/api-specs/api/types/payment/updates/PaymentSetAmountRefundedAction.raml index 1591bb108e..6ada974ac1 100644 --- a/api-specs/api/types/payment/updates/PaymentSetAmountRefundedAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetAmountRefundedAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-amountrefunded (deprecated): true type: PaymentUpdateAction displayName: PaymentSetAmountRefundedAction diff --git a/api-specs/api/types/payment/updates/PaymentSetAnonymousIdAction.raml b/api-specs/api/types/payment/updates/PaymentSetAnonymousIdAction.raml index ef36b29fef..79d92d4512 100644 --- a/api-specs/api/types/payment/updates/PaymentSetAnonymousIdAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetAnonymousIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-anonymousid type: PaymentUpdateAction displayName: PaymentSetAnonymousIdAction discriminatorValue: setAnonymousId diff --git a/api-specs/api/types/payment/updates/PaymentSetAuthorizationAction.raml b/api-specs/api/types/payment/updates/PaymentSetAuthorizationAction.raml index be4a275fbd..3274d65394 100644 --- a/api-specs/api/types/payment/updates/PaymentSetAuthorizationAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetAuthorizationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-authorization (deprecated): true type: PaymentUpdateAction displayName: PaymentSetAuthorizationAction diff --git a/api-specs/api/types/payment/updates/PaymentSetCustomFieldAction.raml b/api-specs/api/types/payment/updates/PaymentSetCustomFieldAction.raml index 19c83206a2..e1bbdbbabc 100644 --- a/api-specs/api/types/payment/updates/PaymentSetCustomFieldAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-customfield type: PaymentUpdateAction displayName: PaymentSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/payment/updates/PaymentSetCustomTypeAction.raml b/api-specs/api/types/payment/updates/PaymentSetCustomTypeAction.raml index 9b3e04b1e0..8411a94413 100644 --- a/api-specs/api/types/payment/updates/PaymentSetCustomTypeAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-custom-type type: PaymentUpdateAction displayName: PaymentSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/payment/updates/PaymentSetCustomerAction.raml b/api-specs/api/types/payment/updates/PaymentSetCustomerAction.raml index 95606c8097..f6293523d4 100644 --- a/api-specs/api/types/payment/updates/PaymentSetCustomerAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetCustomerAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-customer type: PaymentUpdateAction displayName: PaymentSetCustomerAction discriminatorValue: setCustomer diff --git a/api-specs/api/types/payment/updates/PaymentSetExternalIdAction.raml b/api-specs/api/types/payment/updates/PaymentSetExternalIdAction.raml index 5d0b002be7..4424796d64 100644 --- a/api-specs/api/types/payment/updates/PaymentSetExternalIdAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetExternalIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-externalid (deprecated): true type: PaymentUpdateAction displayName: PaymentSetExternalIdAction diff --git a/api-specs/api/types/payment/updates/PaymentSetInterfaceIdAction.raml b/api-specs/api/types/payment/updates/PaymentSetInterfaceIdAction.raml index d975a64ae1..a8ff5615c1 100644 --- a/api-specs/api/types/payment/updates/PaymentSetInterfaceIdAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetInterfaceIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-interfaceid type: PaymentUpdateAction displayName: PaymentSetInterfaceIdAction discriminatorValue: setInterfaceId diff --git a/api-specs/api/types/payment/updates/PaymentSetKeyAction.raml b/api-specs/api/types/payment/updates/PaymentSetKeyAction.raml index 5dc7fe3be8..29436db062 100644 --- a/api-specs/api/types/payment/updates/PaymentSetKeyAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-key type: PaymentUpdateAction displayName: PaymentSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/payment/updates/PaymentSetMethodInfoInterfaceAction.raml b/api-specs/api/types/payment/updates/PaymentSetMethodInfoInterfaceAction.raml index e48800fbc4..303dc8a5c4 100644 --- a/api-specs/api/types/payment/updates/PaymentSetMethodInfoInterfaceAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetMethodInfoInterfaceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-methodinfointerface type: PaymentUpdateAction displayName: PaymentSetMethodInfoInterfaceAction discriminatorValue: setMethodInfoInterface diff --git a/api-specs/api/types/payment/updates/PaymentSetMethodInfoMethodAction.raml b/api-specs/api/types/payment/updates/PaymentSetMethodInfoMethodAction.raml index a3170f24b0..9d1246fc93 100644 --- a/api-specs/api/types/payment/updates/PaymentSetMethodInfoMethodAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetMethodInfoMethodAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-methodinfomethod type: PaymentUpdateAction displayName: PaymentSetMethodInfoMethodAction discriminatorValue: setMethodInfoMethod diff --git a/api-specs/api/types/payment/updates/PaymentSetMethodInfoNameAction.raml b/api-specs/api/types/payment/updates/PaymentSetMethodInfoNameAction.raml index 0187d698b3..05c65bd1ae 100644 --- a/api-specs/api/types/payment/updates/PaymentSetMethodInfoNameAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetMethodInfoNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-methodinfoname type: PaymentUpdateAction displayName: PaymentSetMethodInfoNameAction discriminatorValue: setMethodInfoName diff --git a/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceCodeAction.raml b/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceCodeAction.raml index 04ca234320..858cef2efc 100644 --- a/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceCodeAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceCodeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-statusinterfacecode type: PaymentUpdateAction displayName: PaymentSetStatusInterfaceCodeAction discriminatorValue: setStatusInterfaceCode diff --git a/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceTextAction.raml b/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceTextAction.raml index 7075b0fe2c..fd56f7a9bf 100644 --- a/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceTextAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetStatusInterfaceTextAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-statusinterfacetext type: PaymentUpdateAction displayName: PaymentSetStatusInterfaceTextAction discriminatorValue: setStatusInterfaceText diff --git a/api-specs/api/types/payment/updates/PaymentSetTransactionCustomFieldAction.raml b/api-specs/api/types/payment/updates/PaymentSetTransactionCustomFieldAction.raml index 28bf5b413f..818274e967 100644 --- a/api-specs/api/types/payment/updates/PaymentSetTransactionCustomFieldAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetTransactionCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-transaction-customfield type: PaymentUpdateAction displayName: PaymentSetTransactionCustomFieldAction discriminatorValue: setTransactionCustomField diff --git a/api-specs/api/types/payment/updates/PaymentSetTransactionCustomTypeAction.raml b/api-specs/api/types/payment/updates/PaymentSetTransactionCustomTypeAction.raml index 6ac3c4788d..3ba7855f6a 100644 --- a/api-specs/api/types/payment/updates/PaymentSetTransactionCustomTypeAction.raml +++ b/api-specs/api/types/payment/updates/PaymentSetTransactionCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#set-transaction-custom-type type: PaymentUpdateAction displayName: PaymentSetTransactionCustomTypeAction discriminatorValue: setTransactionCustomType diff --git a/api-specs/api/types/payment/updates/PaymentTransitionStateAction.raml b/api-specs/api/types/payment/updates/PaymentTransitionStateAction.raml index 427a4d3677..ecc0383444 100644 --- a/api-specs/api/types/payment/updates/PaymentTransitionStateAction.raml +++ b/api-specs/api/types/payment/updates/PaymentTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Payment -(docs-uri): https://docs.commercetools.com/api/projects/payments#transition-state type: PaymentUpdateAction displayName: PaymentTransitionStateAction discriminatorValue: transitionState diff --git a/api-specs/api/types/product-discount/ProductDiscount.raml b/api-specs/api/types/product-discount/ProductDiscount.raml index 65b7b07e96..b46fa0b282 100644 --- a/api-specs/api/types/product-discount/ProductDiscount.raml +++ b/api-specs/api/types/product-discount/ProductDiscount.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#productdiscount type: BaseResource displayName: ProductDiscount (updateType): ProductDiscountUpdate @@ -28,12 +27,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the ProductDiscount. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the ProductDiscount. name: type: LocalizedString description: | diff --git a/api-specs/api/types/product-discount/ProductDiscountDraft.raml b/api-specs/api/types/product-discount/ProductDiscountDraft.raml index 9188063568..451029620d 100644 --- a/api-specs/api/types/product-discount/ProductDiscountDraft.raml +++ b/api-specs/api/types/product-discount/ProductDiscountDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#productdiscountdraft type: object displayName: ProductDiscountDraft example: !include ../../examples/product-discount-create.example.json diff --git a/api-specs/api/types/product-discount/ProductDiscountMatchQuery.raml b/api-specs/api/types/product-discount/ProductDiscountMatchQuery.raml index 96550815ad..ce37040c22 100644 --- a/api-specs/api/types/product-discount/ProductDiscountMatchQuery.raml +++ b/api-specs/api/types/product-discount/ProductDiscountMatchQuery.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#get-matching-productdiscount type: object displayName: ProductDiscountMatchQuery properties: diff --git a/api-specs/api/types/product-discount/ProductDiscountReference.raml b/api-specs/api/types/product-discount/ProductDiscountReference.raml index a569ed9829..cd508eff21 100644 --- a/api-specs/api/types/product-discount/ProductDiscountReference.raml +++ b/api-specs/api/types/product-discount/ProductDiscountReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#productdiscountreference type: Reference displayName: ProductDiscountReference discriminatorValue: product-discount diff --git a/api-specs/api/types/product-discount/ProductDiscountResourceIdentifier.raml b/api-specs/api/types/product-discount/ProductDiscountResourceIdentifier.raml index 02bc4697d0..fdbf666498 100644 --- a/api-specs/api/types/product-discount/ProductDiscountResourceIdentifier.raml +++ b/api-specs/api/types/product-discount/ProductDiscountResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#productdiscountresourceidentifier type: ResourceIdentifier displayName: ProductDiscountResourceIdentifier discriminatorValue: product-discount diff --git a/api-specs/api/types/product-discount/ProductDiscountValue.raml b/api-specs/api/types/product-discount/ProductDiscountValue.raml index 53d66344e9..2ccd0e21e9 100644 --- a/api-specs/api/types/product-discount/ProductDiscountValue.raml +++ b/api-specs/api/types/product-discount/ProductDiscountValue.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#productdiscountvalue type: object displayName: ProductDiscountValue discriminator: type diff --git a/api-specs/api/types/product-discount/ProductDiscountValueDraft.raml b/api-specs/api/types/product-discount/ProductDiscountValueDraft.raml index 6a8714294e..3407832e4e 100644 --- a/api-specs/api/types/product-discount/ProductDiscountValueDraft.raml +++ b/api-specs/api/types/product-discount/ProductDiscountValueDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#productdiscountvaluedraft type: object displayName: ProductDiscountValueDraft discriminator: type diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountChangeIsActiveAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountChangeIsActiveAction.raml index 479f1ab449..f0c7d7442b 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountChangeIsActiveAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountChangeIsActiveAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#change-is-active type: ProductDiscountUpdateAction displayName: ProductDiscountChangeIsActiveAction discriminatorValue: changeIsActive diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountChangeNameAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountChangeNameAction.raml index e977e97999..56b0d274cd 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountChangeNameAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#change-name type: ProductDiscountUpdateAction displayName: ProductDiscountChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountChangePredicateAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountChangePredicateAction.raml index 0ae872b169..2cb47ae775 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountChangePredicateAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountChangePredicateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#change-predicate type: ProductDiscountUpdateAction displayName: ProductDiscountChangePredicateAction discriminatorValue: changePredicate diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountChangeSortOrderAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountChangeSortOrderAction.raml index 9441112e29..2160a81131 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountChangeSortOrderAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountChangeSortOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#change-sort-order type: ProductDiscountUpdateAction displayName: ProductDiscountChangeSortOrderAction discriminatorValue: changeSortOrder diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountChangeValueAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountChangeValueAction.raml index 1e36f4e2e9..3fc435fed7 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountChangeValueAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountChangeValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#change-value type: ProductDiscountUpdateAction displayName: ProductDiscountChangeValueAction discriminatorValue: changeValue diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountSetDescriptionAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountSetDescriptionAction.raml index 0369527090..104b90a90a 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountSetDescriptionAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#set-description type: ProductDiscountUpdateAction displayName: ProductDiscountSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountSetKeyAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountSetKeyAction.raml index 1f006b6ac9..0a0d14b4be 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountSetKeyAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#set-key type: ProductDiscountUpdateAction displayName: ProductDiscountSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAction.raml index 2db3c16a04..05c804f15c 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#set-valid-from type: ProductDiscountUpdateAction displayName: ProductDiscountSetValidFromAction discriminatorValue: setValidFrom diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAndUntilAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAndUntilAction.raml index c90c0a7962..98f2177ba7 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAndUntilAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountSetValidFromAndUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#set-valid-from-and-until type: ProductDiscountUpdateAction displayName: ProductDiscountSetValidFromAndUntilAction discriminatorValue: setValidFromAndUntil diff --git a/api-specs/api/types/product-discount/updates/ProductDiscountSetValidUntilAction.raml b/api-specs/api/types/product-discount/updates/ProductDiscountSetValidUntilAction.raml index d24f3c4ba1..17f3c3122e 100644 --- a/api-specs/api/types/product-discount/updates/ProductDiscountSetValidUntilAction.raml +++ b/api-specs/api/types/product-discount/updates/ProductDiscountSetValidUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductDiscount -(docs-uri): https://docs.commercetools.com/api/projects/productDiscounts#set-valid-until type: ProductDiscountUpdateAction displayName: ProductDiscountSetValidUntilAction discriminatorValue: setValidUntil diff --git a/api-specs/api/types/product-search/ProductPagedSearchResponse.raml b/api-specs/api/types/product-search/ProductPagedSearchResponse.raml new file mode 100644 index 0000000000..c447dab798 --- /dev/null +++ b/api-specs/api/types/product-search/ProductPagedSearchResponse.raml @@ -0,0 +1,33 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductPagedSearchResponse +type: object +(beta): true +properties: + total: + type: number + format: int64 + minimum: 0 + description: Total number of results matching the query. + offset: + type: number + format: int32 + minimum: 0 + maximum: 9900 + description: | + Number of [elements skipped](/../api/general-concepts#offset). + limit: + type: number + format: int32 + minimum: 0 + maximum: 100 + description: | + Number of [results requested](/../api/general-concepts#limit). + facets: + type: ProductSearchFacetResult[] + description: | + Results for [facets](/../api/projects/product-search#facets) when requested. + results: + type: ProductSearchResult[] + description: | + Search result containing the Products matching the search query. diff --git a/api-specs/api/types/product-search/ProductSearchErrorResponse.raml b/api-specs/api/types/product-search/ProductSearchErrorResponse.raml new file mode 100644 index 0000000000..e3af94da2e --- /dev/null +++ b/api-specs/api/types/product-search/ProductSearchErrorResponse.raml @@ -0,0 +1,16 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: ErrorResponse +(beta): true +displayName: ProductSearchErrorResponse +properties: + statusCode: + description: The HTTP status code of the response. + type: integer + message: + description: Describes the error. + type: string + errors?: + description: | + The errors that caused this error response. + type: ErrorObject[] diff --git a/api-specs/api/types/product-search/ProductSearchMatchingVariantEntry.raml b/api-specs/api/types/product-search/ProductSearchMatchingVariantEntry.raml new file mode 100644 index 0000000000..e87b764f0e --- /dev/null +++ b/api-specs/api/types/product-search/ProductSearchMatchingVariantEntry.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchMatchingVariantEntry +type: object +(beta): true +properties: + id: + type: number + format: int32 + description: Unique identifier of the variant. + sku?: + type: string + description: SKU of the matching variant. diff --git a/api-specs/api/types/product-search/ProductSearchMatchingVariants.raml b/api-specs/api/types/product-search/ProductSearchMatchingVariants.raml new file mode 100644 index 0000000000..8def25fb07 --- /dev/null +++ b/api-specs/api/types/product-search/ProductSearchMatchingVariants.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchMatchingVariants +type: object +(beta): true +properties: + allMatched: + type: boolean + description: Whether the search criteria definitely matches all Variants of the returned Product, like for Product-level fields. Is always `false` for search expressions on Variant-level fields. + matchedVariants: + type: ProductSearchMatchingVariantEntry[] + description: The variants matching the search criteria or empty if all matched. diff --git a/api-specs/api/types/product-search/ProductSearchProjectionParams.raml b/api-specs/api/types/product-search/ProductSearchProjectionParams.raml new file mode 100644 index 0000000000..1408908fa7 --- /dev/null +++ b/api-specs/api/types/product-search/ProductSearchProjectionParams.raml @@ -0,0 +1,43 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchProjectionParams +properties: + expand?: + type: Expansion[] + description: | + Expands a `value` of type [Reference](ctp:api:type:Reference) in a [ProductProjection](ctp:api:type:ProductProjection). + In case the referenced object does not exist, the API returns the non-expanded reference. + staged?: + type: boolean + description: | + Set to `true` to retrieve the [staged](ctp:api:type:CurrentStaged) Product Projection + priceCurrency?: + type: CurrencyCode + description: | + The currency used for [Price selection](/projects/products#price-selection). + priceCountry?: + type: CountryCode + description: | + The country used for [Price selection](/projects/products#price-selection). Can only be used **in conjunction with** the `priceCurrency` parameter. + priceCustomerGroup?: + type: string + description: | + `id` of an existing [CustomerGroup](ctp:api:type:CustomerGroup) used for [Price selection](ctp:api:type:ProductPriceSelection). Can only be used **in conjunction with** the `priceCurrency` parameter. + priceChannel?: + type: string + description: | + `id` of an existing [Channel](ctp:api:type:Channel) used for [Price selection](ctp:api:type:ProductPriceSelection). Can only be used **in conjunction with** the `priceCurrency` parameter. + localeProjection?: + type: Locale[] + description: | + Used for [locale-based projection](ctp:api:type:ProductProjectionLocales). + storeProjection?: + type: string + description: | + `key` of an existing [Store](ctp:api:type:Store). + If the Store has defined some languages, countries, distribution or supply Channels, + they are used for projections based on [locale](ctp:api:type:ProductProjectionLocales), [price](ctp:api:type:ProductProjectionPrices), + and [inventory](ctp:api:type:ProductProjectionInventoryEntries). + If the Store has defined [Product Selections](ctp:api:type:ProductSelection), they have no effect on the results of this query. diff --git a/api-specs/api/types/product-search/ProductSearchRequest.raml b/api-specs/api/types/product-search/ProductSearchRequest.raml new file mode 100644 index 0000000000..f66cc79ad2 --- /dev/null +++ b/api-specs/api/types/product-search/ProductSearchRequest.raml @@ -0,0 +1,45 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchRequest +example: !include ../../examples/ProductSearch/product-search-request.example.json +properties: + query?: + type: SearchQuery + description: | + The search query against [searchable Product fields](/../api/projects/product-search#searchable-product-fields). + sort?: + type: SearchSorting[] + description: Controls how results to your query are sorted. If not provided, the results are sorted by relevance in descending order. + limit?: + type: number + format: int32 + default: 20 + maximum: 100 + description: The maximum number of search results to be returned. + offset?: + type: number + format: int32 + default: 0 + maximum: 9900 + description: The number of search results to be skipped in the response for pagination. + markMatchingVariants?: + type: boolean + default: false + description: The search can return Products where not all Product Variants match the search criteria. If `true`, the response will include a field called `matchingVariants` that contains the `sku` of Product Variants that match the search query. If the query does not specify any variant-level criteria, `matchingVariants` will be null signifying that all Product Variants are a match. + productProjectionParameters?: + type: ProductSearchProjectionParams + description: | + Set this field to `{}` to get the [ProductProjection](ctp:api:type:ProductProjection) included in the [ProductSearchResult](ctp:api:type:ProductSearchResult). + Include query parameters for controlling [Reference Expansion](/../api/general-concepts#reference-expansion) or [projections](/../api/projects/productProjections#projection-dimensions) according to your needs. + If not set, the result does not include the Product Projection. + facets?: + type: ProductSearchFacetExpression[] + description: | + Set this field to request [facets](/../api/projects/product-search#facets). + postFilter?: + type: SearchQuery + description: | + Specify an additional filter on the result of the `query` after the API calculated `facets`. + This feature assists you in implementing faceted search. diff --git a/api-specs/api/types/product-search/ProductSearchResult.raml b/api-specs/api/types/product-search/ProductSearchResult.raml new file mode 100644 index 0000000000..f255bb8f1e --- /dev/null +++ b/api-specs/api/types/product-search/ProductSearchResult.raml @@ -0,0 +1,16 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchResult +type: object +(beta): true +properties: + id: + (identifier): true + type: string + description: Unique identifier of the Product. + productProjection?: + type: ProductProjection + description: Contains Product Projection data for Products matching the `projection` field in the Search Products request. + matchingVariants?: + type: ProductSearchMatchingVariants + description: Describes the variants that matched the search criteria. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetCountExpression.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetCountExpression.raml new file mode 100644 index 0000000000..7f6ac03893 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetCountExpression.raml @@ -0,0 +1,9 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: ProductSearchFacetExpression +(beta): true +displayName: ProductSearchFacetCountExpression +properties: + count: + type: ProductSearchFacetCountValue + description: Definition of the count facet. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetCountLevelEnum.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetCountLevelEnum.raml new file mode 100644 index 0000000000..be373cab5d --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetCountLevelEnum.raml @@ -0,0 +1,11 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetCountLevelEnum +type: string +(beta): true +enum: + - products + - variants +(enumDescriptions): + products: The query should count Products. + variants: The query should count Product Variants. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetCountValue.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetCountValue.raml new file mode 100644 index 0000000000..148a8121c9 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetCountValue.raml @@ -0,0 +1,20 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchFacetCountValue +properties: + name: + type: string + description: Name of the count facet to appear in the [ProductSearchFacetResultCount](ctp:api:type:ProductSearchFacetResultCount). + scope?: + type: ProductSearchFacetScopeEnum + description: Whether the facet must consider only the Products resulting from the search (`query`) or all the Products (`all`). + default: query + filter?: + type: SearchQuery + description: Additional filtering expression to apply to the search result before calculating the facet. + level?: + type: ProductSearchFacetCountLevelEnum + default: products + description: Specify whether to count Products (`products`) or Product Variants (`variants`). diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctBucketSortBy.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctBucketSortBy.raml new file mode 100644 index 0000000000..b97a46f4b5 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctBucketSortBy.raml @@ -0,0 +1,11 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: string +(beta): true +displayName: ProductSearchFacetDistinctBucketSortBy +enum: + - count + - key +(enumDescriptions): + count: Sort buckets by the count value. + key: Sort buckets by the bucket key. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctBucketSortExpression.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctBucketSortExpression.raml new file mode 100644 index 0000000000..594813b9a6 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctBucketSortExpression.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchFacetDistinctBucketSortExpression +properties: + by: + type: ProductSearchFacetDistinctBucketSortBy + description: Defines whether to sort by bucket count or key. + order: + type: SearchSortOrder + description: Defines the sorting order. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctExpression.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctExpression.raml new file mode 100644 index 0000000000..15c62aa38a --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctExpression.raml @@ -0,0 +1,9 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: ProductSearchFacetExpression +(beta): true +displayName: ProductSearchFacetDistinctExpression +properties: + distinct: + type: ProductSearchFacetDistinctValue + description: Definition of the distinct facet. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctValue.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctValue.raml new file mode 100644 index 0000000000..7c7b8f40ce --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetDistinctValue.raml @@ -0,0 +1,44 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchFacetDistinctValue +properties: + name: + type: string + description: Name of the distinct facet to appear in the [ProductSearchFacetResultBucket](ctp:api:type:ProductSearchFacetResultBucket). + scope?: + type: ProductSearchFacetScopeEnum + default: query + description: Whether the facet must consider only the Products resulting from the search (`query`) or all the Products (`all`). + filter?: + type: SearchQuery + description: Additional filtering expression to apply to the search result before calculating the facet. + level?: + type: ProductSearchFacetCountLevelEnum + default: products + description: Specify whether to count Products (`products`) or Product Variants (`variants`). + field: + type: string + description: | + The [searchable Product field](/api/projects/product-search#searchable-product-fields) to facet on. + includes?: + type: string[] + description: Specify which bucket keys the facets results should include. + sort?: + type: ProductSearchFacetDistinctBucketSortExpression + description: Define how the buckets are sorted. + limit?: + type: number + format: int32 + default: 200 + maximum: 200 + description: Maximum number of buckets to return. + language?: + type: Locale + fieldType?: + type: SearchFieldType + description: If the `field` is not standard, this must be the Attribute type. + missing?: + type: string + description: Default value to use if the specified field is not present on some Products. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetExpression.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetExpression.raml new file mode 100644 index 0000000000..250304e0f8 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetExpression.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchFacetExpression +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetRangesExpression.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetRangesExpression.raml new file mode 100644 index 0000000000..f5269a04d4 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetRangesExpression.raml @@ -0,0 +1,9 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: ProductSearchFacetExpression +(beta): true +displayName: ProductSearchFacetRangesExpression +properties: + ranges: + type: ProductSearchFacetRangesValue + description: Definition of the ranges facet. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetRangesFacetRange.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetRangesFacetRange.raml new file mode 100644 index 0000000000..8a3429e174 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetRangesFacetRange.raml @@ -0,0 +1,16 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchFacetRangesFacetRange +description: Values for `from` and `to` must be a number or [DateTime](ctp:api:type:DateTime). +properties: + from?: + type: any + description: Starting value of the bucket (inclusive). + to?: + type: any + description: Ending value of the bucket (non-inclusive). + key?: + type: string + description: Key to assign the bucket. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetRangesValue.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetRangesValue.raml new file mode 100644 index 0000000000..13ffe2ac0c --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetRangesValue.raml @@ -0,0 +1,32 @@ +#%RAML 1.0 DataType +(package): ProductSearch +type: object +(beta): true +displayName: ProductSearchFacetRangesValue +properties: + name: + type: string + description: Name of the ranges facet to appear in the [ProductSearchFacetResultBucket](ctp:api:type:ProductSearchFacetResultBucket). + scope?: + type: ProductSearchFacetScopeEnum + default: query + description: Whether the facet must consider only the Products resulting from the search (`query`) or all the Products (`all`). + filter?: + type: SearchQuery + description: Additional filtering expression to apply to the search result before calculating the facet. + level?: + type: ProductSearchFacetCountLevelEnum + default: products + description: Specify whether to count Products (`products`) or Product Variants (`variants`). + field: + type: string + description: | + The [searchable Product field](/api/projects/product-search#searchable-product-fields) to facet on. + ranges: + type: ProductSearchFacetRangesFacetRange[] + description: Define ranges for the facet. + language?: + type: Locale + fieldType?: + type: SearchFieldType + description: If the `field` is not standard, this must be the Attribute type. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetResult.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetResult.raml new file mode 100644 index 0000000000..4bdcdbbe18 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetResult.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetResult +type: object +(beta): true +(ignoreValidators): [PolymorphicSubtypesRule] +properties: + name: + type: string + description: Name of the facet. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetResultBucket.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetResultBucket.raml new file mode 100644 index 0000000000..72e4ffac1e --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetResultBucket.raml @@ -0,0 +1,11 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetResultBucket +type: ProductSearchFacetResult +(beta): true +description: | + Result of a [distinct facet](/../api/projects/product-search#distinct-facets) or a [ranges facet](/../api/projects/product-search#ranges-facets). +properties: + buckets: + type: ProductSearchFacetResultBucketEntry[] + description: Contains results of the facet. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetResultBucketEntry.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetResultBucketEntry.raml new file mode 100644 index 0000000000..478f70790b --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetResultBucketEntry.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetResultBucketEntry +type: object +(beta): true +properties: + key: + type: string + description: Key of the bucket. + count: + type: number + format: int32 + description: Number of values in the bucket. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetResultCount.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetResultCount.raml new file mode 100644 index 0000000000..571bbcd80b --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetResultCount.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetResultCount +type: ProductSearchFacetResult +(beta): true +description: | + Result of a [count facet](/../api/projects/product-search#count-facets). +properties: + value: + type: number + format: int64 + description: Number of Products (or Product Variants) matching the query. diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetScope.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetScope.raml new file mode 100644 index 0000000000..000ead4901 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetScope.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetScope +type: string +(beta): true +enum: + - all + - query diff --git a/api-specs/api/types/product-search/facets/ProductSearchFacetScopeEnum.raml b/api-specs/api/types/product-search/facets/ProductSearchFacetScopeEnum.raml new file mode 100644 index 0000000000..cbd6ed49a4 --- /dev/null +++ b/api-specs/api/types/product-search/facets/ProductSearchFacetScopeEnum.raml @@ -0,0 +1,11 @@ +#%RAML 1.0 DataType +(package): ProductSearch +displayName: ProductSearchFacetScopeEnum +type: string +(beta): true +enum: + - all + - query +(enumDescriptions): + all: Count all Products (or Product Variants) without considering the search query. + query: Only count the Products (or Product Variants) that match the search query. diff --git a/api-specs/api/types/product-selection/AssignedProductReference.raml b/api-specs/api/types/product-selection/AssignedProductReference.raml index 81856e47f7..d0b461e27b 100644 --- a/api-specs/api/types/product-selection/AssignedProductReference.raml +++ b/api-specs/api/types/product-selection/AssignedProductReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/http-api-projects-products.html#product type: object displayName: AssignedProductReference properties: diff --git a/api-specs/api/types/product-selection/AssignedProductSelection.raml b/api-specs/api/types/product-selection/AssignedProductSelection.raml index 4137beab12..74d82f0405 100644 --- a/api-specs/api/types/product-selection/AssignedProductSelection.raml +++ b/api-specs/api/types/product-selection/AssignedProductSelection.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#assignedproductselection type: object displayName: AssignedProductSelection properties: diff --git a/api-specs/api/types/product-selection/IndividualExclusionProductSelectionType.raml b/api-specs/api/types/product-selection/IndividualExclusionProductSelectionType.raml index f525a8d010..c01b31a543 100644 --- a/api-specs/api/types/product-selection/IndividualExclusionProductSelectionType.raml +++ b/api-specs/api/types/product-selection/IndividualExclusionProductSelectionType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#individualexclusionproductselectiontype (beta): true (deprecated): true type: ProductSelectionType diff --git a/api-specs/api/types/product-selection/IndividualProductSelectionType.raml b/api-specs/api/types/product-selection/IndividualProductSelectionType.raml index 5029fc07fa..e7af0fcf10 100644 --- a/api-specs/api/types/product-selection/IndividualProductSelectionType.raml +++ b/api-specs/api/types/product-selection/IndividualProductSelectionType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#individualproductselectiontype (beta): true (deprecated): true type: ProductSelectionType diff --git a/api-specs/api/types/product-selection/ProductSelection.raml b/api-specs/api/types/product-selection/ProductSelection.raml index 2aa3648afd..97cf59eb32 100644 --- a/api-specs/api/types/product-selection/ProductSelection.raml +++ b/api-specs/api/types/product-selection/ProductSelection.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): displayName: ProductSelection (updateType): ProductSelectionUpdate type: BaseResource diff --git a/api-specs/api/types/product-selection/ProductSelectionAssignment.raml b/api-specs/api/types/product-selection/ProductSelectionAssignment.raml index f93a1ea3c1..878cc8cf02 100644 --- a/api-specs/api/types/product-selection/ProductSelectionAssignment.raml +++ b/api-specs/api/types/product-selection/ProductSelectionAssignment.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): type: object displayName: ProductSelectionAssignment description: |- diff --git a/api-specs/api/types/product-selection/ProductSelectionDraft.raml b/api-specs/api/types/product-selection/ProductSelectionDraft.raml index 9b77b31aee..72716d0ff5 100644 --- a/api-specs/api/types/product-selection/ProductSelectionDraft.raml +++ b/api-specs/api/types/product-selection/ProductSelectionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): displayName: ProductSelectionDraft type: object properties: diff --git a/api-specs/api/types/product-selection/ProductSelectionMode.raml b/api-specs/api/types/product-selection/ProductSelectionMode.raml index 592fa592bb..8f0ced182a 100644 --- a/api-specs/api/types/product-selection/ProductSelectionMode.raml +++ b/api-specs/api/types/product-selection/ProductSelectionMode.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): displayName: ProductSelectionMode description: | Product Selections can have the following modes: diff --git a/api-specs/api/types/product-selection/ProductSelectionReference.raml b/api-specs/api/types/product-selection/ProductSelectionReference.raml index 13108803c9..edf0e76966 100644 --- a/api-specs/api/types/product-selection/ProductSelectionReference.raml +++ b/api-specs/api/types/product-selection/ProductSelectionReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): type: Reference displayName: ProductSelectionReference discriminatorValue: product-selection diff --git a/api-specs/api/types/product-selection/ProductSelectionResourceIdentifier.raml b/api-specs/api/types/product-selection/ProductSelectionResourceIdentifier.raml index 03773fda09..b1158db0e3 100644 --- a/api-specs/api/types/product-selection/ProductSelectionResourceIdentifier.raml +++ b/api-specs/api/types/product-selection/ProductSelectionResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): type: ResourceIdentifier displayName: ProductSelectionResourceIdentifier discriminatorValue: product-selection diff --git a/api-specs/api/types/product-selection/ProductSelectionType.raml b/api-specs/api/types/product-selection/ProductSelectionType.raml index bd07758e18..c919913aa2 100644 --- a/api-specs/api/types/product-selection/ProductSelectionType.raml +++ b/api-specs/api/types/product-selection/ProductSelectionType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#productselectiontype (beta): true (deprecated): true type: object diff --git a/api-specs/api/types/product-selection/ProductSelectionTypeEnum.raml b/api-specs/api/types/product-selection/ProductSelectionTypeEnum.raml index 6621da5f4e..869d1d74fe 100644 --- a/api-specs/api/types/product-selection/ProductSelectionTypeEnum.raml +++ b/api-specs/api/types/product-selection/ProductSelectionTypeEnum.raml @@ -2,7 +2,6 @@ (package): ProductSelection (beta): true (deprecated): true -(docs-uri): displayName: ProductSelectionTypeEnum description: | The following types of Product Selections are supported: diff --git a/api-specs/api/types/product-selection/ProductVariantExclusion.raml b/api-specs/api/types/product-selection/ProductVariantExclusion.raml index af9abef03c..83f9b5fd07 100644 --- a/api-specs/api/types/product-selection/ProductVariantExclusion.raml +++ b/api-specs/api/types/product-selection/ProductVariantExclusion.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#productvariantexclusion type: object displayName: ProductVariantExclusion description: | diff --git a/api-specs/api/types/product-selection/ProductVariantSelection.raml b/api-specs/api/types/product-selection/ProductVariantSelection.raml index 289826bab7..6f20a69a8f 100644 --- a/api-specs/api/types/product-selection/ProductVariantSelection.raml +++ b/api-specs/api/types/product-selection/ProductVariantSelection.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#productvariantselection type: object displayName: ProductVariantSelection discriminator: type diff --git a/api-specs/api/types/product-selection/ProductVariantSelectionIncludeAllExcept.raml b/api-specs/api/types/product-selection/ProductVariantSelectionIncludeAllExcept.raml index 940f4071ee..5b5db30f30 100644 --- a/api-specs/api/types/product-selection/ProductVariantSelectionIncludeAllExcept.raml +++ b/api-specs/api/types/product-selection/ProductVariantSelectionIncludeAllExcept.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#productvariantselection-includeallexcept type: ProductVariantSelection displayName: ProductVariantSelectionIncludeAllExcept discriminatorValue: includeAllExcept diff --git a/api-specs/api/types/product-selection/ProductVariantSelectionIncludeOnly.raml b/api-specs/api/types/product-selection/ProductVariantSelectionIncludeOnly.raml index 5888eab1a6..95b69bce2e 100644 --- a/api-specs/api/types/product-selection/ProductVariantSelectionIncludeOnly.raml +++ b/api-specs/api/types/product-selection/ProductVariantSelectionIncludeOnly.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#productvariantselection-includeonly type: ProductVariantSelection displayName: ProductVariantSelectionIncludeOnly discriminatorValue: includeOnly diff --git a/api-specs/api/types/product-selection/ProductVariantSelectionTypeEnum.raml b/api-specs/api/types/product-selection/ProductVariantSelectionTypeEnum.raml index f41d828ca5..6c5af4b3ba 100644 --- a/api-specs/api/types/product-selection/ProductVariantSelectionTypeEnum.raml +++ b/api-specs/api/types/product-selection/ProductVariantSelectionTypeEnum.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): displayName: ProductVariantSelectionTypeEnum type: string enum: diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionAddProductAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionAddProductAction.raml index d9abce1735..1dfb8d969f 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionAddProductAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionAddProductAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#add-product type: ProductSelectionUpdateAction displayName: ProductSelectionAddProductAction discriminatorValue: addProduct diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionChangeNameAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionChangeNameAction.raml index 7af1627fff..f552caab0a 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionChangeNameAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#change-name type: ProductSelectionUpdateAction displayName: ProductSelectionChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionExcludeProductAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionExcludeProductAction.raml index c7a1412951..2e308c8a74 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionExcludeProductAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionExcludeProductAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#exclude-product type: ProductSelectionUpdateAction displayName: ProductSelectionExcludeProductAction discriminatorValue: excludeProduct diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionRemoveProductAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionRemoveProductAction.raml index 94169dbb69..18b0ca5901 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionRemoveProductAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionRemoveProductAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#remove-product type: ProductSelectionUpdateAction displayName: ProductSelectionRemoveProductAction discriminatorValue: removeProduct diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomFieldAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomFieldAction.raml index 0f3b4c33f8..c0ea81606e 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomFieldAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#set-custom-field type: ProductSelectionUpdateAction displayName: ProductSelectionSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomTypeAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomTypeAction.raml index e8d932d1f1..b035e877b2 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomTypeAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#set-custom-type type: ProductSelectionUpdateAction displayName: ProductSelectionSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionSetKeyAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionSetKeyAction.raml index 6509a91532..4669e4b981 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionSetKeyAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#set-key type: ProductSelectionUpdateAction displayName: ProductSelectionSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantExclusionAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantExclusionAction.raml index ae24adcd0b..e384dd8008 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantExclusionAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantExclusionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#set-variant-exclusion type: ProductSelectionUpdateAction displayName: ProductSelectionSetVariantExclusionAction discriminatorValue: setVariantExclusion diff --git a/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantSelectionAction.raml b/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantSelectionAction.raml index 5cc34e1a75..90079614e8 100644 --- a/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantSelectionAction.raml +++ b/api-specs/api/types/product-selection/updates/ProductSelectionSetVariantSelectionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductSelection -(docs-uri): https://docs.commercetools.com/api/projects/product-selections#set-variant-selection type: ProductSelectionUpdateAction displayName: ProductSelectionSetVariantSelectionAction discriminatorValue: setVariantSelection diff --git a/api-specs/api/types/product-tailoring/ProductTailoring.raml b/api-specs/api/types/product-tailoring/ProductTailoring.raml new file mode 100644 index 0000000000..6968a870a8 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoring.raml @@ -0,0 +1,65 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +displayName: ProductTailoring +type: BaseResource +(beta): true +(updateType): ProductTailoringUpdate +description: | + A single ProductTailoring representation contains the _current_ and the _staged_ representation of its product data tailored per Store. +example: !include ../../examples/product-tailoring.example.json +properties: + id: + (identifier): true + type: string + description: Unique identifier of the ProductTailoring. + version: + type: number + format: int64 + description: | + Current version of the ProductTailoring. + createdAt: + type: datetime + description: | + Date and time (UTC) the ProductTailoring was initially created. + lastModifiedAt: + type: datetime + description: | + Date and time (UTC) the ProductTailoring was last updated. + lastModifiedBy?: + type: LastModifiedBy + (beta): true + description: | + IDs and references that last modified the ProductTailoring. + createdBy?: + type: CreatedBy + (beta): true + description: | + IDs and references that created the ProductTailoring. + key?: + type: string + description: | + User-defined unique identifier of the ProductTailoring. + store: + type: StoreKeyReference + description: | + The Store to which the ProductTailoring belongs. + product: + type: ProductReference + description: | + Reference to the Product the ProductTailoring belongs to. + published: + type: boolean + description: | + `true` if the ProductTailoring is published. + current: + type: ProductTailoringData + description: | + Current (published) data of the ProductTailoring. + staged: + type: ProductTailoringData + description: | + Staged (unpublished) data of the ProductTailoring. + hasStagedChanges: + type: boolean + description: | + `true` if the `staged` data is different from the `current` data. diff --git a/api-specs/api/types/product-tailoring/ProductTailoringData.raml b/api-specs/api/types/product-tailoring/ProductTailoringData.raml new file mode 100644 index 0000000000..ec9e5db182 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringData.raml @@ -0,0 +1,33 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +displayName: ProductTailoringData +type: object +(beta): true +description: | + Contains all the tailored data of a Product. +properties: + name?: + type: LocalizedString + description: | + Tailored name of the Product. + description?: + type: LocalizedString + description: | + Tailored description of the Product. + metaTitle?: + type: LocalizedString + description: | + Tailored title of the Product used by external search engines for improved search engine performance. + metaDescription?: + type: LocalizedString + description: | + Tailored description of the Product used by external search engines for improved search engine performance. + metaKeywords?: + type: LocalizedString + description: | + Tailored keywords related to the Product used by external search engines for improved search engine performance. + slug?: + type: LocalizedString + description: | + User-defined identifier used in a deep-link URL for the ProductTailoring. + Matches the pattern `[a-zA-Z0-9_\\-]{2,256}`. diff --git a/api-specs/api/types/product-tailoring/ProductTailoringDraft.raml b/api-specs/api/types/product-tailoring/ProductTailoringDraft.raml new file mode 100644 index 0000000000..1b0829d035 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringDraft.raml @@ -0,0 +1,50 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +displayName: ProductTailoringDraft +type: object +(beta): true +description: | + Contains all the tailored data of a Product. +properties: + key?: + type: string + description: | + User-defined unique identifier of the ProductTailoring. + store: + type: StoreResourceIdentifier + description: | + The Store to which the ProductTailoring belongs. + product: + type: ProductResourceIdentifier + description: | + ResourceIdentifier of the Product the ProductTailoring belongs to. + name?: + type: LocalizedString + description: | + Tailored name of the Product. + description?: + type: LocalizedString + description: | + Tailored description of the Product. + metaTitle?: + type: LocalizedString + description: | + Tailored title of the Product used by external search engines for improved search engine performance. + metaDescription?: + type: LocalizedString + description: | + Tailored description of the Product used by external search engines for improved search engine performance. + metaKeywords?: + type: LocalizedString + description: | + Tailored keywords related to the Product used by external search engines for improved search engine performance. + slug?: + type: LocalizedString + description: | + User-defined identifier used in a deep-link URL for the ProductTailoring. + Matches the pattern `[a-zA-Z0-9_\\-]{2,256}`. + publish?: + type: boolean + description: | + If `true`, the ProductTailoring is published immediately. + default: false diff --git a/api-specs/api/types/product-tailoring/ProductTailoringInStoreDraft.raml b/api-specs/api/types/product-tailoring/ProductTailoringInStoreDraft.raml new file mode 100644 index 0000000000..9dce8469ce --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringInStoreDraft.raml @@ -0,0 +1,46 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +displayName: ProductTailoringInStoreDraft +type: object +(beta): true +description: | + Contains all the tailored data of a Product for a specific Store. +properties: + key?: + type: string + description: | + User-defined unique identifier of the ProductTailoring. + product: + type: ProductResourceIdentifier + description: | + ResourceIdentifier of the Product the ProductTailoring belongs to. + name?: + type: LocalizedString + description: | + Tailored name of the Product. + description?: + type: LocalizedString + description: | + Tailored description of the Product. + metaTitle?: + type: LocalizedString + description: | + Tailored title of the Product used by external search engines for improved search engine performance. + metaDescription?: + type: LocalizedString + description: | + Tailored description of the Product used by external search engines for improved search engine performance. + metaKeywords?: + type: LocalizedString + description: | + Tailored keywords related to the Product used by external search engines for improved search engine performance. + slug?: + type: LocalizedString + description: | + User-defined identifier used in a deep-link URL for the ProductTailoring. + Matches the pattern `[a-zA-Z0-9_\\-]{2,256}`. + publish?: + type: boolean + description: | + If `true`, the ProductTailoring is published immediately. + default: false diff --git a/api-specs/api/types/product-tailoring/ProductTailoringPagedQueryResponse.raml b/api-specs/api/types/product-tailoring/ProductTailoringPagedQueryResponse.raml new file mode 100644 index 0000000000..91e886cd9f --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringPagedQueryResponse.raml @@ -0,0 +1,37 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +displayName: ProductTailoringPagedQueryResponse +type: object +(beta): true +example: !include ../../examples/product-tailoring-list.example.json +description: | + [PagedQueryResult](/../api/general-concepts#pagedqueryresult) with results containing an array of [ProductTailoring](ctp:api:type:ProductTailoring). +properties: + limit: + type: number + format: int64 + description: | + Number of [results requested](/../api/general-concepts#limit). + offset: + type: number + format: int64 + description: | + Number of [elements skipped](/../api/general-concepts#offset). + count: + type: number + format: int64 + description: | + Actual number of results returned. + total?: + type: number + format: int64 + description: | + Total number of results matching the query. + This number is an estimation that is not [strongly consistent](/../api/general-concepts#strong-consistency). + This field is returned by default. + For improved performance, calculating this field can be deactivated by using the query parameter `withTotal=false`. + When the results are filtered with a [Query Predicate](/../api/predicates/query), `total` is subject to a [limit](/../api/limits#queries). + results: + type: ProductTailoring[] + description: | + [ProductTailoring](ctp:api:type:ProductTailoring) list matching the query. diff --git a/api-specs/api/types/product-tailoring/ProductTailoringReference.raml b/api-specs/api/types/product-tailoring/ProductTailoringReference.raml new file mode 100644 index 0000000000..51e1d31086 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringReference.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: Reference +(beta): true +displayName: ProductTailoringReference +discriminatorValue: product-tailoring +description: | + [Reference](ctp:api:type:Reference) to a [ProductTailoring](ctp:api:type:ProductTailoring). +properties: + id: + type: string + description: | + Unique identifier of the referenced [ProductTailoring](ctp:api:type:ProductTailoring). + obj?: + type: ProductTailoring + description: | + Contains the representation of the expanded ProductTailoring. Only present in responses to requests with [Reference Expansion](/../api/general-concepts#reference-expansion) for ProductTailoring. diff --git a/api-specs/api/types/product-tailoring/ProductTailoringResourceIdentifier.raml b/api-specs/api/types/product-tailoring/ProductTailoringResourceIdentifier.raml new file mode 100644 index 0000000000..403b5fff40 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringResourceIdentifier.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ResourceIdentifier +(beta): true +displayName: ProductTailoringResourceIdentifier +discriminatorValue: product-tailoring +description: | + [ResourceIdentifier](ctp:api:type:ResourceIdentifier) to a [ProductTailoring](ctp:api:type:ProductTailoring). +properties: + id?: + type: string + description: | + Unique identifier of the referenced [ProductTailoring](ctp:api:type:ProductTailoring). Either `id` or `key` is required. + key?: + type: string + description: | + User-defined unique identifier of the referenced [ProductTailoring](ctp:api:type:ProductTailoring). Either `id` or `key` is required. diff --git a/api-specs/api/types/product-tailoring/ProductTailoringUpdate.raml b/api-specs/api/types/product-tailoring/ProductTailoringUpdate.raml new file mode 100644 index 0000000000..4fa11a1107 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringUpdate.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): Cart +type: object +(beta): true +displayName: ProductTailoringUpdate +properties: + version: + type: number + format: int64 + description: | + Expected version of the ProductTailoring on which the changes apply. + If the expected version does not match the actual version, a [409 Conflict](/../api/errors#409-conflict) is returned. + actions: + type: array + items: ProductTailoringUpdateAction + description: | + Update actions to be performed on the ProductTailoring. diff --git a/api-specs/api/types/product-tailoring/ProductTailoringUpdateAction.raml b/api-specs/api/types/product-tailoring/ProductTailoringUpdateAction.raml new file mode 100644 index 0000000000..2b02c1a5b1 --- /dev/null +++ b/api-specs/api/types/product-tailoring/ProductTailoringUpdateAction.raml @@ -0,0 +1,9 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: object +(beta): true +displayName: ProductTailoringUpdateAction +discriminator: action +properties: + action: + type: string diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringPublishAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringPublishAction.raml new file mode 100644 index 0000000000..1f54459883 --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringPublishAction.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringPublishAction +discriminatorValue: publish +example: !include ../../../examples/ProductTailoring/ProductTailoringPublishAction.json +description: | + Publishes the `staged` data of the ProductTailoring to `current`. Sets `hasStagedChanges` to `false`. + Generates the [ProductTailoringPublished](ctp:api:type:ProductTailoringPublishedMessage) Message. diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetDescriptionAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetDescriptionAction.raml new file mode 100644 index 0000000000..d0d935dd65 --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetDescriptionAction.raml @@ -0,0 +1,19 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetDescriptionAction +discriminatorValue: setDescription +example: !include ../../../examples/ProductTailoring/ProductTailoringSetDescriptionAction.json +description: | + Generates the [ProductTailoringDescriptionSet](ctp:api:type:ProductTailoringDescriptionSetMessage) Message. +properties: + description?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged `description` is updated. If `false`, both the current and staged `description` are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaAttributesAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaAttributesAction.raml new file mode 100644 index 0000000000..df4844c23e --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaAttributesAction.raml @@ -0,0 +1,26 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetMetaAttributesAction +discriminatorValue: setMetaAttributes +example: !include ../../../examples/ProductTailoring/ProductTailoringSetMetaAttributesAction.json +description: Updates all meta attributes at the same time. +properties: + metaTitle?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + metaDescription?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + metaKeywords?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged attributes are updated. If `false`, both the current and staged attributes are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaDescriptionAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaDescriptionAction.raml new file mode 100644 index 0000000000..0a5be2438b --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaDescriptionAction.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetMetaDescriptionAction +discriminatorValue: setMetaDescription +example: !include ../../../examples/ProductTailoring/ProductTailoringSetMetaDescriptionAction.json +properties: + metaDescription?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged `metaDescription` is updated. If `false`, both the current and staged `metaDescription` are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaKeywordsAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaKeywordsAction.raml new file mode 100644 index 0000000000..de8d489f7a --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaKeywordsAction.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetMetaKeywordsAction +discriminatorValue: setMetaKeywords +example: !include ../../../examples/ProductTailoring/ProductTailoringSetMetaKeywordsAction.json +properties: + metaKeywords?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged `metaKeywords` is updated. If `false`, both the current and staged `metaKeywords` are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaTitleAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaTitleAction.raml new file mode 100644 index 0000000000..74c3a3fe5a --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetMetaTitleAction.raml @@ -0,0 +1,17 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetMetaTitleAction +discriminatorValue: setMetaTitle +example: !include ../../../examples/ProductTailoring/ProductTailoringSetMetaTitleAction.json +properties: + metaTitle?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged `metaTitle` is updated. If `false`, both the current and staged `metaTitle` are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetNameAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetNameAction.raml new file mode 100644 index 0000000000..4e27ba300d --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetNameAction.raml @@ -0,0 +1,19 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetNameAction +discriminatorValue: setName +example: !include ../../../examples/ProductTailoring/ProductTailoringSetNameAction.json +description: | + Generates the [ProductTailoringNameSet](ctp:api:type:ProductTailoringNameSetMessage) Message. +properties: + name?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged `name` is updated. If `false`, both the current and staged `name` are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringSetSlugAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetSlugAction.raml new file mode 100644 index 0000000000..fdcf89d010 --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringSetSlugAction.raml @@ -0,0 +1,19 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringSetSlugAction +discriminatorValue: setSlug +example: !include ../../../examples/ProductTailoring/ProductTailoringSetSlugAction.json +description: | + Generates the [ProductTailoringSlugSet](ctp:api:type:ProductTailoringSlugSetMessage) Message. +properties: + slug?: + type: LocalizedString + description: | + Value to set. If empty, any existing value will be removed. + staged?: + type: boolean + description: | + If `true`, only the staged `slug` is updated. If `false`, both the current and staged `slug` are updated. + default: true diff --git a/api-specs/api/types/product-tailoring/updates/ProductTailoringUnpublishAction.raml b/api-specs/api/types/product-tailoring/updates/ProductTailoringUnpublishAction.raml new file mode 100644 index 0000000000..1ed574b8a8 --- /dev/null +++ b/api-specs/api/types/product-tailoring/updates/ProductTailoringUnpublishAction.raml @@ -0,0 +1,10 @@ +#%RAML 1.0 DataType +(package): ProductTailoring +type: ProductTailoringUpdateAction +(beta): true +displayName: ProductTailoringUnpublishAction +discriminatorValue: unpublish +example: !include ../../../examples/ProductTailoring/ProductTailoringUnpublishAction.json +description: | + Unpublishes the `current` data of the ProductTailoring. Sets the `published` field to `false`. + Generates the [ProductTailoringUnpublished](ctp:api:type:ProductTailoringUnpublishedMessage) Message. diff --git a/api-specs/api/types/product-type/AttributeBooleanType.raml b/api-specs/api/types/product-type/AttributeBooleanType.raml index 0d79923e1f..2561d1b163 100644 --- a/api-specs/api/types/product-type/AttributeBooleanType.raml +++ b/api-specs/api/types/product-type/AttributeBooleanType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#booleantype type: AttributeType displayName: AttributeBooleanType discriminatorValue: boolean diff --git a/api-specs/api/types/product-type/AttributeDateTimeType.raml b/api-specs/api/types/product-type/AttributeDateTimeType.raml index b64782dc2a..d2b29cf883 100644 --- a/api-specs/api/types/product-type/AttributeDateTimeType.raml +++ b/api-specs/api/types/product-type/AttributeDateTimeType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#datetimetype type: AttributeType displayName: AttributeDateTimeType discriminatorValue: datetime diff --git a/api-specs/api/types/product-type/AttributeDateType.raml b/api-specs/api/types/product-type/AttributeDateType.raml index b85aff0336..60c7ae29bf 100644 --- a/api-specs/api/types/product-type/AttributeDateType.raml +++ b/api-specs/api/types/product-type/AttributeDateType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#datetype type: AttributeType displayName: AttributeDateType discriminatorValue: date diff --git a/api-specs/api/types/product-type/AttributeDefinition.raml b/api-specs/api/types/product-type/AttributeDefinition.raml index 939372f901..51425ba701 100644 --- a/api-specs/api/types/product-type/AttributeDefinition.raml +++ b/api-specs/api/types/product-type/AttributeDefinition.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#attributedefinition displayName: AttributeDefinition type: object description: | diff --git a/api-specs/api/types/product-type/AttributeEnumType.raml b/api-specs/api/types/product-type/AttributeEnumType.raml index c6db97a873..c8f9267a3a 100644 --- a/api-specs/api/types/product-type/AttributeEnumType.raml +++ b/api-specs/api/types/product-type/AttributeEnumType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#enumtype type: AttributeType displayName: AttributeEnumType discriminatorValue: enum diff --git a/api-specs/api/types/product-type/AttributeLocalizableTextType.raml b/api-specs/api/types/product-type/AttributeLocalizableTextType.raml index afd11b9773..5fe5906ba1 100644 --- a/api-specs/api/types/product-type/AttributeLocalizableTextType.raml +++ b/api-specs/api/types/product-type/AttributeLocalizableTextType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#localizabletexttype type: AttributeType displayName: AttributeLocalizableTextType discriminatorValue: ltext diff --git a/api-specs/api/types/product-type/AttributeLocalizedEnumType.raml b/api-specs/api/types/product-type/AttributeLocalizedEnumType.raml index 2f653c8198..c1b9e8ae13 100644 --- a/api-specs/api/types/product-type/AttributeLocalizedEnumType.raml +++ b/api-specs/api/types/product-type/AttributeLocalizedEnumType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#localizableenumtype type: AttributeType displayName: AttributeLocalizedEnumType discriminatorValue: lenum diff --git a/api-specs/api/types/product-type/AttributeLocalizedEnumValue.raml b/api-specs/api/types/product-type/AttributeLocalizedEnumValue.raml index 76f357458e..0c00b6205c 100644 --- a/api-specs/api/types/product-type/AttributeLocalizedEnumValue.raml +++ b/api-specs/api/types/product-type/AttributeLocalizedEnumValue.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#localizedenumvalue type: object displayName: AttributeLocalizedEnumValue description: | diff --git a/api-specs/api/types/product-type/AttributeMoneyType.raml b/api-specs/api/types/product-type/AttributeMoneyType.raml index dd56837cc8..931fb09f07 100644 --- a/api-specs/api/types/product-type/AttributeMoneyType.raml +++ b/api-specs/api/types/product-type/AttributeMoneyType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#moneytype type: AttributeType displayName: AttributeMoneyType discriminatorValue: money diff --git a/api-specs/api/types/product-type/AttributeNestedType.raml b/api-specs/api/types/product-type/AttributeNestedType.raml index a28cb1d893..1f22442cea 100644 --- a/api-specs/api/types/product-type/AttributeNestedType.raml +++ b/api-specs/api/types/product-type/AttributeNestedType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#attributenestedtype type: AttributeType displayName: AttributeNestedType discriminatorValue: nested diff --git a/api-specs/api/types/product-type/AttributeNumberType.raml b/api-specs/api/types/product-type/AttributeNumberType.raml index e48728ac55..a0e96b1f7b 100644 --- a/api-specs/api/types/product-type/AttributeNumberType.raml +++ b/api-specs/api/types/product-type/AttributeNumberType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#numbertype type: AttributeType displayName: AttributeNumberType discriminatorValue: number diff --git a/api-specs/api/types/product-type/AttributePlainEnumValue.raml b/api-specs/api/types/product-type/AttributePlainEnumValue.raml index c7b4e10028..9852b70aeb 100644 --- a/api-specs/api/types/product-type/AttributePlainEnumValue.raml +++ b/api-specs/api/types/product-type/AttributePlainEnumValue.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#plainenumvalue type: object displayName: AttributePlainEnumValue description: | diff --git a/api-specs/api/types/product-type/AttributeReferenceType.raml b/api-specs/api/types/product-type/AttributeReferenceType.raml index 939dcd8a1f..f1bb9aae39 100644 --- a/api-specs/api/types/product-type/AttributeReferenceType.raml +++ b/api-specs/api/types/product-type/AttributeReferenceType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#referencetype type: AttributeType displayName: AttributeReferenceType discriminatorValue: reference diff --git a/api-specs/api/types/product-type/AttributeReferenceTypeId.raml b/api-specs/api/types/product-type/AttributeReferenceTypeId.raml index 16d726e874..bbd5fa6df2 100644 --- a/api-specs/api/types/product-type/AttributeReferenceTypeId.raml +++ b/api-specs/api/types/product-type/AttributeReferenceTypeId.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#attributereferencetypeid displayName: AttributeReferenceTypeId type: string description: | diff --git a/api-specs/api/types/product-type/AttributeSetType.raml b/api-specs/api/types/product-type/AttributeSetType.raml index 2ed3eac2c9..dd0262d749 100644 --- a/api-specs/api/types/product-type/AttributeSetType.raml +++ b/api-specs/api/types/product-type/AttributeSetType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#settype type: AttributeType displayName: AttributeSetType discriminatorValue: set diff --git a/api-specs/api/types/product-type/AttributeTextType.raml b/api-specs/api/types/product-type/AttributeTextType.raml index 247d03313a..0713a43843 100644 --- a/api-specs/api/types/product-type/AttributeTextType.raml +++ b/api-specs/api/types/product-type/AttributeTextType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#texttype type: AttributeType displayName: AttributeTextType discriminatorValue: text diff --git a/api-specs/api/types/product-type/AttributeTimeType.raml b/api-specs/api/types/product-type/AttributeTimeType.raml index 6d5cda0adb..b22328cb06 100644 --- a/api-specs/api/types/product-type/AttributeTimeType.raml +++ b/api-specs/api/types/product-type/AttributeTimeType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#timetype type: AttributeType displayName: AttributeTimeType discriminatorValue: time diff --git a/api-specs/api/types/product-type/AttributeType.raml b/api-specs/api/types/product-type/AttributeType.raml index 0f61357b80..782c21f0a8 100644 --- a/api-specs/api/types/product-type/AttributeType.raml +++ b/api-specs/api/types/product-type/AttributeType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#attributetype type: object displayName: AttributeType discriminator: name diff --git a/api-specs/api/types/product-type/ProductType.raml b/api-specs/api/types/product-type/ProductType.raml index 01e0bda07a..d18a63ad82 100644 --- a/api-specs/api/types/product-type/ProductType.raml +++ b/api-specs/api/types/product-type/ProductType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#producttype displayName: ProductType (updateType): ProductTypeUpdate type: BaseResource @@ -26,12 +25,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the ProductType. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the ProductType. key?: type: string description: |- diff --git a/api-specs/api/types/product-type/ProductTypeDraft.raml b/api-specs/api/types/product-type/ProductTypeDraft.raml index 7eca036b84..315ff84907 100644 --- a/api-specs/api/types/product-type/ProductTypeDraft.raml +++ b/api-specs/api/types/product-type/ProductTypeDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#producttypedraft displayName: ProductTypeDraft type: object properties: diff --git a/api-specs/api/types/product-type/ProductTypeReference.raml b/api-specs/api/types/product-type/ProductTypeReference.raml index e9422a9e45..0c30697710 100644 --- a/api-specs/api/types/product-type/ProductTypeReference.raml +++ b/api-specs/api/types/product-type/ProductTypeReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#producttype type: Reference displayName: ProductTypeReference discriminatorValue: product-type diff --git a/api-specs/api/types/product-type/ProductTypeResourceIdentifier.raml b/api-specs/api/types/product-type/ProductTypeResourceIdentifier.raml index 71765becd7..dc9e4907cc 100644 --- a/api-specs/api/types/product-type/ProductTypeResourceIdentifier.raml +++ b/api-specs/api/types/product-type/ProductTypeResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#producttype type: ResourceIdentifier displayName: ProductTypeResourceIdentifier discriminatorValue: product-type diff --git a/api-specs/api/types/product-type/updates/ProductTypeAddAttributeDefinitionAction.raml b/api-specs/api/types/product-type/updates/ProductTypeAddAttributeDefinitionAction.raml index c941599beb..3eb15ffbbd 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeAddAttributeDefinitionAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeAddAttributeDefinitionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#add-attributedefinition type: ProductTypeUpdateAction displayName: ProductTypeAddAttributeDefinitionAction discriminatorValue: addAttributeDefinition diff --git a/api-specs/api/types/product-type/updates/ProductTypeAddLocalizedEnumValueAction.raml b/api-specs/api/types/product-type/updates/ProductTypeAddLocalizedEnumValueAction.raml index ac8b2f0a2d..956338dc50 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeAddLocalizedEnumValueAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeAddLocalizedEnumValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#add-localizableenumvalue-to-attributedefinition type: ProductTypeUpdateAction displayName: ProductTypeAddLocalizedEnumValueAction discriminatorValue: addLocalizedEnumValue diff --git a/api-specs/api/types/product-type/updates/ProductTypeAddPlainEnumValueAction.raml b/api-specs/api/types/product-type/updates/ProductTypeAddPlainEnumValueAction.raml index 58da3388c9..cd7df7e02b 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeAddPlainEnumValueAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeAddPlainEnumValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#add-plainenumvalue-to-attributedefinition type: ProductTypeUpdateAction displayName: ProductTypeAddPlainEnumValueAction discriminatorValue: addPlainEnumValue diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeConstraintAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeConstraintAction.raml index dbbad03260..48eff2f913 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeConstraintAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeConstraintAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-attributedefinition-attributeconstraint type: ProductTypeUpdateAction displayName: ProductTypeChangeAttributeConstraintAction discriminatorValue: changeAttributeConstraint diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeNameAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeNameAction.raml index 709f5714c2..927de610c0 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeNameAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-attributedefinition-name type: ProductTypeUpdateAction displayName: ProductTypeChangeAttributeNameAction discriminatorValue: changeAttributeName diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderAction.raml index b20a0e5688..022e155bc4 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-order-of-attributedefinitions (deprecated): true type: ProductTypeUpdateAction displayName: ProductTypeChangeAttributeOrderAction diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderByNameAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderByNameAction.raml index ee0a9ab376..d87a0b1316 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderByNameAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeAttributeOrderByNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-order-of-attributedefinitions type: ProductTypeUpdateAction displayName: ProductTypeChangeAttributeOrderByNameAction discriminatorValue: changeAttributeOrderByName diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeDescriptionAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeDescriptionAction.raml index f29ed54428..74d7a24cf4 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeDescriptionAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-description type: ProductTypeUpdateAction displayName: ProductTypeChangeDescriptionAction discriminatorValue: changeDescription diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeEnumKeyAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeEnumKeyAction.raml index 85dc02a9fa..353ba2fc9d 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeEnumKeyAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeEnumKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-key-of-an-enumvalue type: ProductTypeUpdateAction displayName: ProductTypeChangeEnumKeyAction discriminatorValue: changeEnumKey diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeInputHintAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeInputHintAction.raml index b9dab38c5c..37d635d033 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeInputHintAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeInputHintAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-attributedefinition-inputhint type: ProductTypeUpdateAction displayName: ProductTypeChangeInputHintAction description: | diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeIsSearchableAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeIsSearchableAction.raml index f24be2bb07..620455873a 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeIsSearchableAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeIsSearchableAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-attributedefinition-issearchable type: ProductTypeUpdateAction displayName: ProductTypeChangeIsSearchableAction discriminatorValue: changeIsSearchable diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeLabelAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeLabelAction.raml index f929075901..be90de110c 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeLabelAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-attributedefinition-label type: ProductTypeUpdateAction displayName: ProductTypeChangeLabelAction discriminatorValue: changeLabel diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueLabelAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueLabelAction.raml index 8517186e70..a43bc9c8ad 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueLabelAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-label-of-an-enumvalue type: ProductTypeUpdateAction displayName: ProductTypeChangeLocalizedEnumValueLabelAction discriminatorValue: changeLocalizedEnumValueLabel diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueOrderAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueOrderAction.raml index 4cc51672f4..e61b3bd444 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueOrderAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeLocalizedEnumValueOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-order-of-localizedenumvalues type: ProductTypeUpdateAction displayName: ProductTypeChangeLocalizedEnumValueOrderAction discriminatorValue: changeLocalizedEnumValueOrder diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangeNameAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangeNameAction.raml index 12f3dc7b0e..c41b067e4d 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangeNameAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-name type: ProductTypeUpdateAction displayName: ProductTypeChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueLabelAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueLabelAction.raml index c52f22c1ed..d02a866b2e 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueLabelAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-label-of-an-enumvalue type: ProductTypeUpdateAction displayName: ProductTypeChangePlainEnumValueLabelAction discriminatorValue: changePlainEnumValueLabel diff --git a/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueOrderAction.raml b/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueOrderAction.raml index f881ff9ea4..4dcd38050b 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueOrderAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeChangePlainEnumValueOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#change-the-order-of-enumvalues type: ProductTypeUpdateAction displayName: ProductTypeChangePlainEnumValueOrderAction discriminatorValue: changePlainEnumValueOrder diff --git a/api-specs/api/types/product-type/updates/ProductTypeRemoveAttributeDefinitionAction.raml b/api-specs/api/types/product-type/updates/ProductTypeRemoveAttributeDefinitionAction.raml index e749781f6a..f678233daf 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeRemoveAttributeDefinitionAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeRemoveAttributeDefinitionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#remove-attributedefinition type: ProductTypeUpdateAction displayName: ProductTypeRemoveAttributeDefinitionAction discriminatorValue: removeAttributeDefinition diff --git a/api-specs/api/types/product-type/updates/ProductTypeRemoveEnumValuesAction.raml b/api-specs/api/types/product-type/updates/ProductTypeRemoveEnumValuesAction.raml index b768a8f183..375b84000c 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeRemoveEnumValuesAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeRemoveEnumValuesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#remove-enumvalues-from-attributedefinition type: ProductTypeUpdateAction displayName: ProductTypeRemoveEnumValuesAction discriminatorValue: removeEnumValues diff --git a/api-specs/api/types/product-type/updates/ProductTypeSetInputTipAction.raml b/api-specs/api/types/product-type/updates/ProductTypeSetInputTipAction.raml index f4ae638989..02adb95933 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeSetInputTipAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeSetInputTipAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#set-attributedefinition-inputtip type: ProductTypeUpdateAction displayName: ProductTypeSetInputTipAction discriminatorValue: setInputTip diff --git a/api-specs/api/types/product-type/updates/ProductTypeSetKeyAction.raml b/api-specs/api/types/product-type/updates/ProductTypeSetKeyAction.raml index 957f94dc48..5665c8ca1e 100644 --- a/api-specs/api/types/product-type/updates/ProductTypeSetKeyAction.raml +++ b/api-specs/api/types/product-type/updates/ProductTypeSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ProductType -(docs-uri): https://docs.commercetools.com/api/projects/productTypes#set-key type: ProductTypeUpdateAction displayName: ProductTypeSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/product/Attribute.raml b/api-specs/api/types/product/Attribute.raml index 5f197a4549..3e9e4f375c 100644 --- a/api-specs/api/types/product/Attribute.raml +++ b/api-specs/api/types/product/Attribute.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#attribute type: object displayName: Attribute properties: diff --git a/api-specs/api/types/product/CategoryOrderHints.raml b/api-specs/api/types/product/CategoryOrderHints.raml index 3f2aae1fa5..076e8a2b74 100644 --- a/api-specs/api/types/product/CategoryOrderHints.raml +++ b/api-specs/api/types/product/CategoryOrderHints.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#categoryorderhints displayName: CategoryOrderHints type: object (asMap): diff --git a/api-specs/api/types/product/Product.raml b/api-specs/api/types/product/Product.raml index 304796b1b4..c2c221aae6 100644 --- a/api-specs/api/types/product/Product.raml +++ b/api-specs/api/types/product/Product.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#product displayName: Product type: BaseResource (updateType): ProductUpdate @@ -32,12 +31,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Product. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Product. key?: type: string description: | diff --git a/api-specs/api/types/product/ProductCatalogData.raml b/api-specs/api/types/product/ProductCatalogData.raml index 89fa1bc2aa..a7d9da594d 100644 --- a/api-specs/api/types/product/ProductCatalogData.raml +++ b/api-specs/api/types/product/ProductCatalogData.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productcatalogdata displayName: ProductCatalogData type: object description: | diff --git a/api-specs/api/types/product/ProductData.raml b/api-specs/api/types/product/ProductData.raml index c5e027b653..05606dcd27 100644 --- a/api-specs/api/types/product/ProductData.raml +++ b/api-specs/api/types/product/ProductData.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productdata displayName: ProductData type: object description: | diff --git a/api-specs/api/types/product/ProductDraft.raml b/api-specs/api/types/product/ProductDraft.raml index d7de3c574e..ce8d7ab4f5 100644 --- a/api-specs/api/types/product/ProductDraft.raml +++ b/api-specs/api/types/product/ProductDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productdraft displayName: ProductDraft type: object example: !include ../../examples/product-create.example.json @@ -23,6 +22,8 @@ properties: type: string description: | User-defined unique identifier for the Product. + + To update a Product using the [Import API](/../import-export/product), the Product `key` must match the pattern `^[A-Za-z0-9_-]{2,256}$`. description?: type: LocalizedString description: | diff --git a/api-specs/api/types/product/ProductPriceModeEnum.raml b/api-specs/api/types/product/ProductPriceModeEnum.raml index a0227396c9..4d1b9eb706 100644 --- a/api-specs/api/types/product/ProductPriceModeEnum.raml +++ b/api-specs/api/types/product/ProductPriceModeEnum.raml @@ -2,7 +2,6 @@ (package): Product (beta): true displayName: ProductPriceModeEnum -(docs-uri): https://docs.commercetools.com/api/projects/products#productpricemode type: string description: | This mode determines the type of Prices used for [Product Price Selection](ctp:api:type:ProductPriceSelection) and for [LineItem Price selection](ctp:api:type:LineItemPriceSelection). diff --git a/api-specs/api/types/product/ProductProjection.raml b/api-specs/api/types/product/ProductProjection.raml index 026e042a9a..7b1836d3de 100644 --- a/api-specs/api/types/product/ProductProjection.raml +++ b/api-specs/api/types/product/ProductProjection.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/projects/productProjections#productprojection displayName: ProductProjection type: BaseResource properties: @@ -18,9 +17,6 @@ properties: type: string description: | User-defined unique identifier of the [Product](ctp:api:type:Product). - pattern: ^[A-Za-z0-9_-]+$ - minLength: 2 - maxLength: 256 createdAt: type: datetime description: | diff --git a/api-specs/api/types/product/ProductPublishScope.raml b/api-specs/api/types/product/ProductPublishScope.raml index d41e6ea47b..4831c20300 100644 --- a/api-specs/api/types/product/ProductPublishScope.raml +++ b/api-specs/api/types/product/ProductPublishScope.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Cart -(docs-uri): https://docs.commercetools.com/http-api-projects-carts.html#cartorigin displayName: ProductPublishScope type: string description: |- diff --git a/api-specs/api/types/product/ProductReference.raml b/api-specs/api/types/product/ProductReference.raml index 500d0675c6..4461cc81c6 100644 --- a/api-specs/api/types/product/ProductReference.raml +++ b/api-specs/api/types/product/ProductReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#product type: Reference displayName: ProductReference discriminatorValue: product diff --git a/api-specs/api/types/product/ProductResourceIdentifier.raml b/api-specs/api/types/product/ProductResourceIdentifier.raml index 8a0d36847f..15d7fc08e0 100644 --- a/api-specs/api/types/product/ProductResourceIdentifier.raml +++ b/api-specs/api/types/product/ProductResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#product type: ResourceIdentifier displayName: ProductResourceIdentifier discriminatorValue: product diff --git a/api-specs/api/types/product/ProductVariant.raml b/api-specs/api/types/product/ProductVariant.raml index 6a6567aeec..938c3141d4 100644 --- a/api-specs/api/types/product/ProductVariant.raml +++ b/api-specs/api/types/product/ProductVariant.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productvariant displayName: ProductVariant type: object description: | diff --git a/api-specs/api/types/product/ProductVariantAvailability.raml b/api-specs/api/types/product/ProductVariantAvailability.raml index 4272698549..bd21f8e678 100644 --- a/api-specs/api/types/product/ProductVariantAvailability.raml +++ b/api-specs/api/types/product/ProductVariantAvailability.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productvariantavailability displayName: ProductVariantAvailability type: object description: | @@ -10,7 +9,7 @@ properties: type: ProductVariantChannelAvailabilityMap description: | For each [InventoryEntry](ctp:api:type:InventoryEntry) with a supply Channel, an entry is added to `channels`. - isOnStock?: + isOnStock: type: boolean description: | Indicates whether a Product Variant is in stock. @@ -24,3 +23,12 @@ properties: format: int64 description: | Number of items of the Product Variant that are in stock. + id?: + type: string + description: | + Unique identifier of the [InventoryEntry](ctp:api:type:InventoryEntry). + version?: + type: number + format: int64 + description: | + Current version of the [InventoryEntry](ctp:api:type:InventoryEntry). diff --git a/api-specs/api/types/product/ProductVariantChannelAvailabilityMap.raml b/api-specs/api/types/product/ProductVariantChannelAvailabilityMap.raml index cd3907f78d..dbb19d9546 100644 --- a/api-specs/api/types/product/ProductVariantChannelAvailabilityMap.raml +++ b/api-specs/api/types/product/ProductVariantChannelAvailabilityMap.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productvariantchannelavailabilitymap displayName: ProductVariantChannelAvailabilityMap type: object (asMap): diff --git a/api-specs/api/types/product/ProductVariantDraft.raml b/api-specs/api/types/product/ProductVariantDraft.raml index f416140488..eedea39516 100644 --- a/api-specs/api/types/product/ProductVariantDraft.raml +++ b/api-specs/api/types/product/ProductVariantDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#productvariantdraft displayName: ProductVariantDraft type: object description: | diff --git a/api-specs/api/types/product/SearchKeyword.raml b/api-specs/api/types/product/SearchKeyword.raml index fcd44e28da..a02a9c6149 100644 --- a/api-specs/api/types/product/SearchKeyword.raml +++ b/api-specs/api/types/product/SearchKeyword.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#searchkeyword displayName: SearchKeyword type: object properties: diff --git a/api-specs/api/types/product/SearchKeywords.raml b/api-specs/api/types/product/SearchKeywords.raml index d661905cb5..c5dba8bd06 100644 --- a/api-specs/api/types/product/SearchKeywords.raml +++ b/api-specs/api/types/product/SearchKeywords.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#searchkeywords displayName: SearchKeywords type: object (asMap): diff --git a/api-specs/api/types/product/SuggestTokenizer.raml b/api-specs/api/types/product/SuggestTokenizer.raml index fd3a6e5a8e..4808c8b6ad 100644 --- a/api-specs/api/types/product/SuggestTokenizer.raml +++ b/api-specs/api/types/product/SuggestTokenizer.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#suggesttokenizer displayName: SuggestTokenizer type: object discriminator: type diff --git a/api-specs/api/types/product/Suggestion.raml b/api-specs/api/types/product/Suggestion.raml index c3d47e7d97..85c17605e5 100644 --- a/api-specs/api/types/product/Suggestion.raml +++ b/api-specs/api/types/product/Suggestion.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/http-api-projects-products-suggestions.html#suggestion displayName: Suggestion type: object properties: diff --git a/api-specs/api/types/product/SuggestionResult.raml b/api-specs/api/types/product/SuggestionResult.raml index ab38cae1af..474999dc26 100644 --- a/api-specs/api/types/product/SuggestionResult.raml +++ b/api-specs/api/types/product/SuggestionResult.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/http-api-projects-products-suggestions.html#suggestionresult displayName: SuggestionResult type: object properties: diff --git a/api-specs/api/types/product/updates/ProductAddAssetAction.raml b/api-specs/api/types/product/updates/ProductAddAssetAction.raml index d21153ab17..f11871741d 100644 --- a/api-specs/api/types/product/updates/ProductAddAssetAction.raml +++ b/api-specs/api/types/product/updates/ProductAddAssetAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#add-asset type: ProductUpdateAction displayName: ProductAddAssetAction discriminatorValue: addAsset diff --git a/api-specs/api/types/product/updates/ProductAddExternalImageAction.raml b/api-specs/api/types/product/updates/ProductAddExternalImageAction.raml index f4a661f223..a16d04641e 100644 --- a/api-specs/api/types/product/updates/ProductAddExternalImageAction.raml +++ b/api-specs/api/types/product/updates/ProductAddExternalImageAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#add-external-image type: ProductUpdateAction displayName: ProductAddExternalImageAction discriminatorValue: addExternalImage diff --git a/api-specs/api/types/product/updates/ProductAddPriceAction.raml b/api-specs/api/types/product/updates/ProductAddPriceAction.raml index 74177f877c..c0e9677729 100644 --- a/api-specs/api/types/product/updates/ProductAddPriceAction.raml +++ b/api-specs/api/types/product/updates/ProductAddPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#add-price type: ProductUpdateAction displayName: ProductAddPriceAction discriminatorValue: addPrice diff --git a/api-specs/api/types/product/updates/ProductAddToCategoryAction.raml b/api-specs/api/types/product/updates/ProductAddToCategoryAction.raml index 08aa05ce09..734fe24c16 100644 --- a/api-specs/api/types/product/updates/ProductAddToCategoryAction.raml +++ b/api-specs/api/types/product/updates/ProductAddToCategoryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#add-to-category type: ProductUpdateAction displayName: ProductAddToCategoryAction discriminatorValue: addToCategory diff --git a/api-specs/api/types/product/updates/ProductAddVariantAction.raml b/api-specs/api/types/product/updates/ProductAddVariantAction.raml index c3f8d80638..ab338eb919 100644 --- a/api-specs/api/types/product/updates/ProductAddVariantAction.raml +++ b/api-specs/api/types/product/updates/ProductAddVariantAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#add-productvariant type: ProductUpdateAction displayName: ProductAddVariantAction discriminatorValue: addVariant diff --git a/api-specs/api/types/product/updates/ProductChangeAssetNameAction.raml b/api-specs/api/types/product/updates/ProductChangeAssetNameAction.raml index d915a5db17..50467bcf4f 100644 --- a/api-specs/api/types/product/updates/ProductChangeAssetNameAction.raml +++ b/api-specs/api/types/product/updates/ProductChangeAssetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#change-asset-name type: ProductUpdateAction displayName: ProductChangeAssetNameAction discriminatorValue: changeAssetName diff --git a/api-specs/api/types/product/updates/ProductChangeAssetOrderAction.raml b/api-specs/api/types/product/updates/ProductChangeAssetOrderAction.raml index 3e9cb0782f..03182e875b 100644 --- a/api-specs/api/types/product/updates/ProductChangeAssetOrderAction.raml +++ b/api-specs/api/types/product/updates/ProductChangeAssetOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#change-asset-order type: ProductUpdateAction displayName: ProductChangeAssetOrderAction discriminatorValue: changeAssetOrder diff --git a/api-specs/api/types/product/updates/ProductChangeMasterVariantAction.raml b/api-specs/api/types/product/updates/ProductChangeMasterVariantAction.raml index 02490cd413..9bf4f98959 100644 --- a/api-specs/api/types/product/updates/ProductChangeMasterVariantAction.raml +++ b/api-specs/api/types/product/updates/ProductChangeMasterVariantAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#change-master-variant type: ProductUpdateAction displayName: ProductChangeMasterVariantAction discriminatorValue: changeMasterVariant diff --git a/api-specs/api/types/product/updates/ProductChangeNameAction.raml b/api-specs/api/types/product/updates/ProductChangeNameAction.raml index a8f0d14bf0..e28857b947 100644 --- a/api-specs/api/types/product/updates/ProductChangeNameAction.raml +++ b/api-specs/api/types/product/updates/ProductChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#change-product-name type: ProductUpdateAction displayName: ProductChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/product/updates/ProductChangePriceAction.raml b/api-specs/api/types/product/updates/ProductChangePriceAction.raml index b5c7e6def1..6fd30bb46f 100644 --- a/api-specs/api/types/product/updates/ProductChangePriceAction.raml +++ b/api-specs/api/types/product/updates/ProductChangePriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#change-price type: ProductUpdateAction displayName: ProductChangePriceAction discriminatorValue: changePrice diff --git a/api-specs/api/types/product/updates/ProductChangeSlugAction.raml b/api-specs/api/types/product/updates/ProductChangeSlugAction.raml index 97ecb687d0..49fdf47f9d 100644 --- a/api-specs/api/types/product/updates/ProductChangeSlugAction.raml +++ b/api-specs/api/types/product/updates/ProductChangeSlugAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#change-slug type: ProductUpdateAction displayName: ProductChangeSlugAction discriminatorValue: changeSlug diff --git a/api-specs/api/types/product/updates/ProductMoveImageToPositionAction.raml b/api-specs/api/types/product/updates/ProductMoveImageToPositionAction.raml index eca0569fa9..5a8e6a93b2 100644 --- a/api-specs/api/types/product/updates/ProductMoveImageToPositionAction.raml +++ b/api-specs/api/types/product/updates/ProductMoveImageToPositionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#move-image-to-position type: ProductUpdateAction displayName: ProductMoveImageToPositionAction discriminatorValue: moveImageToPosition diff --git a/api-specs/api/types/product/updates/ProductPublishAction.raml b/api-specs/api/types/product/updates/ProductPublishAction.raml index d4ef0c767e..67ee3e3cf7 100644 --- a/api-specs/api/types/product/updates/ProductPublishAction.raml +++ b/api-specs/api/types/product/updates/ProductPublishAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#publish type: ProductUpdateAction displayName: ProductPublishAction discriminatorValue: publish diff --git a/api-specs/api/types/product/updates/ProductRemoveAssetAction.raml b/api-specs/api/types/product/updates/ProductRemoveAssetAction.raml index 8edfbfff82..efa23b95fe 100644 --- a/api-specs/api/types/product/updates/ProductRemoveAssetAction.raml +++ b/api-specs/api/types/product/updates/ProductRemoveAssetAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#remove-asset type: ProductUpdateAction displayName: ProductRemoveAssetAction discriminatorValue: removeAsset diff --git a/api-specs/api/types/product/updates/ProductRemoveFromCategoryAction.raml b/api-specs/api/types/product/updates/ProductRemoveFromCategoryAction.raml index fca3546e44..a5fc7095d5 100644 --- a/api-specs/api/types/product/updates/ProductRemoveFromCategoryAction.raml +++ b/api-specs/api/types/product/updates/ProductRemoveFromCategoryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#remove-from-category type: ProductUpdateAction displayName: ProductRemoveFromCategoryAction discriminatorValue: removeFromCategory diff --git a/api-specs/api/types/product/updates/ProductRemoveImageAction.raml b/api-specs/api/types/product/updates/ProductRemoveImageAction.raml index b25eb2168f..9287403d63 100644 --- a/api-specs/api/types/product/updates/ProductRemoveImageAction.raml +++ b/api-specs/api/types/product/updates/ProductRemoveImageAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#remove-image type: ProductUpdateAction displayName: ProductRemoveImageAction discriminatorValue: removeImage diff --git a/api-specs/api/types/product/updates/ProductRemovePriceAction.raml b/api-specs/api/types/product/updates/ProductRemovePriceAction.raml index 91bb763a8f..c6725e6a1f 100644 --- a/api-specs/api/types/product/updates/ProductRemovePriceAction.raml +++ b/api-specs/api/types/product/updates/ProductRemovePriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#remove-price type: ProductUpdateAction displayName: ProductRemovePriceAction discriminatorValue: removePrice diff --git a/api-specs/api/types/product/updates/ProductRemoveVariantAction.raml b/api-specs/api/types/product/updates/ProductRemoveVariantAction.raml index 26880776a7..fa41eb7b3b 100644 --- a/api-specs/api/types/product/updates/ProductRemoveVariantAction.raml +++ b/api-specs/api/types/product/updates/ProductRemoveVariantAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#remove-productvariant type: ProductUpdateAction displayName: ProductRemoveVariantAction discriminatorValue: removeVariant diff --git a/api-specs/api/types/product/updates/ProductRevertStagedChangesAction.raml b/api-specs/api/types/product/updates/ProductRevertStagedChangesAction.raml index b9dbcdda06..174922ee1c 100644 --- a/api-specs/api/types/product/updates/ProductRevertStagedChangesAction.raml +++ b/api-specs/api/types/product/updates/ProductRevertStagedChangesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#revert-staged-changes type: ProductUpdateAction displayName: ProductRevertStagedChangesAction discriminatorValue: revertStagedChanges diff --git a/api-specs/api/types/product/updates/ProductRevertStagedVariantChangesAction.raml b/api-specs/api/types/product/updates/ProductRevertStagedVariantChangesAction.raml index 02343b41d2..6c0243fdbf 100644 --- a/api-specs/api/types/product/updates/ProductRevertStagedVariantChangesAction.raml +++ b/api-specs/api/types/product/updates/ProductRevertStagedVariantChangesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#revert-staged-variant-changes type: ProductUpdateAction displayName: ProductRevertStagedVariantChangesAction discriminatorValue: revertStagedVariantChanges diff --git a/api-specs/api/types/product/updates/ProductSetAssetCustomFieldAction.raml b/api-specs/api/types/product/updates/ProductSetAssetCustomFieldAction.raml index dd97c797f3..58717238a4 100644 --- a/api-specs/api/types/product/updates/ProductSetAssetCustomFieldAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAssetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-asset-custom-field type: ProductUpdateAction displayName: ProductSetAssetCustomFieldAction discriminatorValue: setAssetCustomField diff --git a/api-specs/api/types/product/updates/ProductSetAssetCustomTypeAction.raml b/api-specs/api/types/product/updates/ProductSetAssetCustomTypeAction.raml index b38d47bdfc..a1883ba66d 100644 --- a/api-specs/api/types/product/updates/ProductSetAssetCustomTypeAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAssetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-asset-custom-type type: ProductUpdateAction displayName: ProductSetAssetCustomTypeAction discriminatorValue: setAssetCustomType diff --git a/api-specs/api/types/product/updates/ProductSetAssetDescriptionAction.raml b/api-specs/api/types/product/updates/ProductSetAssetDescriptionAction.raml index d9683376fc..3cf2707df2 100644 --- a/api-specs/api/types/product/updates/ProductSetAssetDescriptionAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAssetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-asset-description type: ProductUpdateAction displayName: ProductSetAssetDescriptionAction discriminatorValue: setAssetDescription diff --git a/api-specs/api/types/product/updates/ProductSetAssetKeyAction.raml b/api-specs/api/types/product/updates/ProductSetAssetKeyAction.raml index e2dddaa7c1..47d7a24393 100644 --- a/api-specs/api/types/product/updates/ProductSetAssetKeyAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAssetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-asset-key type: ProductUpdateAction displayName: ProductSetAssetKeyAction discriminatorValue: setAssetKey diff --git a/api-specs/api/types/product/updates/ProductSetAssetSourcesAction.raml b/api-specs/api/types/product/updates/ProductSetAssetSourcesAction.raml index 1c3dd87f21..e7ecbde489 100644 --- a/api-specs/api/types/product/updates/ProductSetAssetSourcesAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAssetSourcesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-asset-sources type: ProductUpdateAction displayName: ProductSetAssetSourcesAction discriminatorValue: setAssetSources diff --git a/api-specs/api/types/product/updates/ProductSetAssetTagsAction.raml b/api-specs/api/types/product/updates/ProductSetAssetTagsAction.raml index ac75af2968..af661998bb 100644 --- a/api-specs/api/types/product/updates/ProductSetAssetTagsAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAssetTagsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-asset-tags type: ProductUpdateAction displayName: ProductSetAssetTagsAction discriminatorValue: setAssetTags diff --git a/api-specs/api/types/product/updates/ProductSetAttributeAction.raml b/api-specs/api/types/product/updates/ProductSetAttributeAction.raml index c1331ed49c..523526bfcd 100644 --- a/api-specs/api/types/product/updates/ProductSetAttributeAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAttributeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-attribute type: ProductUpdateAction displayName: ProductSetAttributeAction discriminatorValue: setAttribute diff --git a/api-specs/api/types/product/updates/ProductSetAttributeInAllVariantsAction.raml b/api-specs/api/types/product/updates/ProductSetAttributeInAllVariantsAction.raml index 776a09496d..83355d431c 100644 --- a/api-specs/api/types/product/updates/ProductSetAttributeInAllVariantsAction.raml +++ b/api-specs/api/types/product/updates/ProductSetAttributeInAllVariantsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-attribute-in-all-variants type: ProductUpdateAction displayName: ProductSetAttributeInAllVariantsAction discriminatorValue: setAttributeInAllVariants diff --git a/api-specs/api/types/product/updates/ProductSetCategoryOrderHintAction.raml b/api-specs/api/types/product/updates/ProductSetCategoryOrderHintAction.raml index 39e2b9d866..4ad9dd1766 100644 --- a/api-specs/api/types/product/updates/ProductSetCategoryOrderHintAction.raml +++ b/api-specs/api/types/product/updates/ProductSetCategoryOrderHintAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-category-order-hint type: ProductUpdateAction displayName: ProductSetCategoryOrderHintAction discriminatorValue: setCategoryOrderHint diff --git a/api-specs/api/types/product/updates/ProductSetDescriptionAction.raml b/api-specs/api/types/product/updates/ProductSetDescriptionAction.raml index fb1b6b9fe7..1b509bf0ab 100644 --- a/api-specs/api/types/product/updates/ProductSetDescriptionAction.raml +++ b/api-specs/api/types/product/updates/ProductSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-product-description type: ProductUpdateAction displayName: ProductSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/product/updates/ProductSetDiscountedPriceAction.raml b/api-specs/api/types/product/updates/ProductSetDiscountedPriceAction.raml index 509b75c3fa..e90c938daa 100644 --- a/api-specs/api/types/product/updates/ProductSetDiscountedPriceAction.raml +++ b/api-specs/api/types/product/updates/ProductSetDiscountedPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-discounted-price type: ProductUpdateAction displayName: ProductSetDiscountedPriceAction discriminatorValue: setDiscountedPrice diff --git a/api-specs/api/types/product/updates/ProductSetImageLabelAction.raml b/api-specs/api/types/product/updates/ProductSetImageLabelAction.raml index 759e34c5ca..9ee6d332e4 100644 --- a/api-specs/api/types/product/updates/ProductSetImageLabelAction.raml +++ b/api-specs/api/types/product/updates/ProductSetImageLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-image-label type: ProductUpdateAction displayName: ProductSetImageLabelAction discriminatorValue: setImageLabel diff --git a/api-specs/api/types/product/updates/ProductSetKeyAction.raml b/api-specs/api/types/product/updates/ProductSetKeyAction.raml index b1bc8b7860..e3af614492 100644 --- a/api-specs/api/types/product/updates/ProductSetKeyAction.raml +++ b/api-specs/api/types/product/updates/ProductSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-product-key type: ProductUpdateAction displayName: ProductSetKeyAction discriminatorValue: setKey @@ -10,3 +9,5 @@ properties: type: string description: | Value to set. If empty, any existing value will be removed. + + To update a Product using the [Import API](/../import-export/product), the Product `key` must match the pattern `^[A-Za-z0-9_-]{2,256}$`. diff --git a/api-specs/api/types/product/updates/ProductSetMetaDescriptionAction.raml b/api-specs/api/types/product/updates/ProductSetMetaDescriptionAction.raml index 47fdf2de59..67e952b90e 100644 --- a/api-specs/api/types/product/updates/ProductSetMetaDescriptionAction.raml +++ b/api-specs/api/types/product/updates/ProductSetMetaDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-meta-description type: ProductUpdateAction displayName: ProductSetMetaDescriptionAction discriminatorValue: setMetaDescription diff --git a/api-specs/api/types/product/updates/ProductSetMetaKeywordsAction.raml b/api-specs/api/types/product/updates/ProductSetMetaKeywordsAction.raml index 29ce6fa80e..35e725d5d1 100644 --- a/api-specs/api/types/product/updates/ProductSetMetaKeywordsAction.raml +++ b/api-specs/api/types/product/updates/ProductSetMetaKeywordsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-meta-keywords type: ProductUpdateAction displayName: ProductSetMetaKeywordsAction discriminatorValue: setMetaKeywords diff --git a/api-specs/api/types/product/updates/ProductSetMetaTitleAction.raml b/api-specs/api/types/product/updates/ProductSetMetaTitleAction.raml index 273541d354..4f204fc7d9 100644 --- a/api-specs/api/types/product/updates/ProductSetMetaTitleAction.raml +++ b/api-specs/api/types/product/updates/ProductSetMetaTitleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-meta-title type: ProductUpdateAction displayName: ProductSetMetaTitleAction discriminatorValue: setMetaTitle diff --git a/api-specs/api/types/product/updates/ProductSetPriceKeyAction.raml b/api-specs/api/types/product/updates/ProductSetPriceKeyAction.raml index fae63ba1d4..2375764839 100644 --- a/api-specs/api/types/product/updates/ProductSetPriceKeyAction.raml +++ b/api-specs/api/types/product/updates/ProductSetPriceKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-price-key type: ProductUpdateAction displayName: ProductSetPriceKeyAction discriminatorValue: setPriceKey diff --git a/api-specs/api/types/product/updates/ProductSetPriceModeAction.raml b/api-specs/api/types/product/updates/ProductSetPriceModeAction.raml index e0990304ec..2b5d6b509a 100644 --- a/api-specs/api/types/product/updates/ProductSetPriceModeAction.raml +++ b/api-specs/api/types/product/updates/ProductSetPriceModeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-price-mode type: ProductUpdateAction displayName: ProductSetPriceModeAction discriminatorValue: setPriceMode diff --git a/api-specs/api/types/product/updates/ProductSetPricesAction.raml b/api-specs/api/types/product/updates/ProductSetPricesAction.raml index e41eec282e..48c6b43819 100644 --- a/api-specs/api/types/product/updates/ProductSetPricesAction.raml +++ b/api-specs/api/types/product/updates/ProductSetPricesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-prices type: ProductUpdateAction displayName: ProductSetPricesAction discriminatorValue: setPrices diff --git a/api-specs/api/types/product/updates/ProductSetProductPriceCustomFieldAction.raml b/api-specs/api/types/product/updates/ProductSetProductPriceCustomFieldAction.raml index a58bae43a1..3d237a2858 100644 --- a/api-specs/api/types/product/updates/ProductSetProductPriceCustomFieldAction.raml +++ b/api-specs/api/types/product/updates/ProductSetProductPriceCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-customfield type: ProductUpdateAction displayName: ProductSetProductPriceCustomFieldAction discriminatorValue: setProductPriceCustomField diff --git a/api-specs/api/types/product/updates/ProductSetProductPriceCustomTypeAction.raml b/api-specs/api/types/product/updates/ProductSetProductPriceCustomTypeAction.raml index b479ec8bae..573acf535e 100644 --- a/api-specs/api/types/product/updates/ProductSetProductPriceCustomTypeAction.raml +++ b/api-specs/api/types/product/updates/ProductSetProductPriceCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-product-price-custom-type type: ProductUpdateAction displayName: ProductSetProductPriceCustomTypeAction discriminatorValue: setProductPriceCustomType diff --git a/api-specs/api/types/product/updates/ProductSetProductVariantKeyAction.raml b/api-specs/api/types/product/updates/ProductSetProductVariantKeyAction.raml index 5012f45642..8398408b80 100644 --- a/api-specs/api/types/product/updates/ProductSetProductVariantKeyAction.raml +++ b/api-specs/api/types/product/updates/ProductSetProductVariantKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-productvariant-key type: ProductUpdateAction displayName: ProductSetProductVariantKeyAction discriminatorValue: setProductVariantKey diff --git a/api-specs/api/types/product/updates/ProductSetSearchKeywordsAction.raml b/api-specs/api/types/product/updates/ProductSetSearchKeywordsAction.raml index 79e21e48e9..09230fe939 100644 --- a/api-specs/api/types/product/updates/ProductSetSearchKeywordsAction.raml +++ b/api-specs/api/types/product/updates/ProductSetSearchKeywordsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-searchkeywords type: ProductUpdateAction displayName: ProductSetSearchKeywordsAction discriminatorValue: setSearchKeywords diff --git a/api-specs/api/types/product/updates/ProductSetSkuAction.raml b/api-specs/api/types/product/updates/ProductSetSkuAction.raml index ac556614ec..87c94ba5ff 100644 --- a/api-specs/api/types/product/updates/ProductSetSkuAction.raml +++ b/api-specs/api/types/product/updates/ProductSetSkuAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-sku type: ProductUpdateAction displayName: ProductSetSkuAction discriminatorValue: setSku diff --git a/api-specs/api/types/product/updates/ProductSetTaxCategoryAction.raml b/api-specs/api/types/product/updates/ProductSetTaxCategoryAction.raml index 680cf4b5f6..65e3e42a5c 100644 --- a/api-specs/api/types/product/updates/ProductSetTaxCategoryAction.raml +++ b/api-specs/api/types/product/updates/ProductSetTaxCategoryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#set-taxcategory type: ProductUpdateAction displayName: ProductSetTaxCategoryAction discriminatorValue: setTaxCategory diff --git a/api-specs/api/types/product/updates/ProductTransitionStateAction.raml b/api-specs/api/types/product/updates/ProductTransitionStateAction.raml index f67eec9a65..86bd02fffd 100644 --- a/api-specs/api/types/product/updates/ProductTransitionStateAction.raml +++ b/api-specs/api/types/product/updates/ProductTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#transition-state type: ProductUpdateAction displayName: ProductTransitionStateAction discriminatorValue: transitionState diff --git a/api-specs/api/types/product/updates/ProductUnpublishAction.raml b/api-specs/api/types/product/updates/ProductUnpublishAction.raml index 3d7a75ef24..06e7c3f5d5 100644 --- a/api-specs/api/types/product/updates/ProductUnpublishAction.raml +++ b/api-specs/api/types/product/updates/ProductUnpublishAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Product -(docs-uri): https://docs.commercetools.com/api/projects/products#unpublish type: ProductUpdateAction displayName: ProductUnpublishAction discriminatorValue: unpublish diff --git a/api-specs/api/types/project/CartClassificationType.raml b/api-specs/api/types/project/CartClassificationType.raml index b193f0f8fd..e08bf2137a 100644 --- a/api-specs/api/types/project/CartClassificationType.raml +++ b/api-specs/api/types/project/CartClassificationType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#cartclassification displayName: CartClassificationType type: ShippingRateInputType example: !include ../../examples/Project/ProjectShippingRateInputTypeCartClassification.json diff --git a/api-specs/api/types/project/CartScoreType.raml b/api-specs/api/types/project/CartScoreType.raml index c27b6848d6..868ad70d3f 100644 --- a/api-specs/api/types/project/CartScoreType.raml +++ b/api-specs/api/types/project/CartScoreType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#cartscore displayName: CartScoreType type: ShippingRateInputType discriminatorValue: CartScore diff --git a/api-specs/api/types/project/CartValueType.raml b/api-specs/api/types/project/CartValueType.raml index 9da64df031..0e2f021741 100644 --- a/api-specs/api/types/project/CartValueType.raml +++ b/api-specs/api/types/project/CartValueType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#cartvalue displayName: CartValueType type: ShippingRateInputType discriminatorValue: CartValue diff --git a/api-specs/api/types/project/ExternalOAuth.raml b/api-specs/api/types/project/ExternalOAuth.raml index f86e253b99..c474660859 100644 --- a/api-specs/api/types/project/ExternalOAuth.raml +++ b/api-specs/api/types/project/ExternalOAuth.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#externaloauth displayName: ExternalOAuth type: object description: | diff --git a/api-specs/api/types/project/ProductSearchIndexingMode.raml b/api-specs/api/types/project/ProductSearchIndexingMode.raml new file mode 100644 index 0000000000..71e3d270ed --- /dev/null +++ b/api-specs/api/types/project/ProductSearchIndexingMode.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): Project +displayName: ProductSearchIndexingMode +type: string +(beta): true +enum: + - ProductProjectionsSearch + - ProductsSearch +(enumDescriptions): + ProductProjectionsSearch: | + For [Product Projection Search](/../api/projects/products-search). + ProductsSearch: | + For [Product Search](/../api/projects/product-search). diff --git a/api-specs/api/types/project/ProductSearchStatus.raml b/api-specs/api/types/project/ProductSearchStatus.raml new file mode 100644 index 0000000000..5caa2e7fef --- /dev/null +++ b/api-specs/api/types/project/ProductSearchStatus.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): Project +type: string +(beta): true +displayName: ProductSearchStatus +description: Specifies the status of the [Product Search](/../api/projects/product-search) index. +(enumDescriptions): + Activated: indicates that the [Search Products](/../api/projects/product-search#search-products) endpoint is fully operational. + Deactivated: indicates that the Product Search feature is currently not active. +enum: + - Activated + - Deactivated diff --git a/api-specs/api/types/project/Project.raml b/api-specs/api/types/project/Project.raml index 41fed48165..07b76ded60 100644 --- a/api-specs/api/types/project/Project.raml +++ b/api-specs/api/types/project/Project.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#project type: object displayName: Project (updateType): ProjectUpdate diff --git a/api-specs/api/types/project/SearchIndexingConfiguration.raml b/api-specs/api/types/project/SearchIndexingConfiguration.raml index 602c0fbcae..403cc37144 100644 --- a/api-specs/api/types/project/SearchIndexingConfiguration.raml +++ b/api-specs/api/types/project/SearchIndexingConfiguration.raml @@ -8,6 +8,10 @@ properties: products?: type: SearchIndexingConfigurationValues description: Configuration for the [Product Projection Search](/../api/projects/products-search) and [Product Suggestions](/../api/projects/products-suggestions) endpoints. + productsSearch?: + type: SearchIndexingConfigurationValues + (beta): true + description: Configuration for the [Product Search](/../api/projects/product-search) feature. orders?: type: SearchIndexingConfigurationValues (beta): true diff --git a/api-specs/api/types/project/SearchIndexingConfigurationValues.raml b/api-specs/api/types/project/SearchIndexingConfigurationValues.raml index 8b4cbb0d12..245528930b 100644 --- a/api-specs/api/types/project/SearchIndexingConfigurationValues.raml +++ b/api-specs/api/types/project/SearchIndexingConfigurationValues.raml @@ -14,4 +14,4 @@ properties: (beta): true type: LastModifiedBy description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the SearchIndexingConfigurationValues. diff --git a/api-specs/api/types/project/ShippingRateInputType.raml b/api-specs/api/types/project/ShippingRateInputType.raml index b826fda74a..bfee84a8fb 100644 --- a/api-specs/api/types/project/ShippingRateInputType.raml +++ b/api-specs/api/types/project/ShippingRateInputType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#shippingrateinputtype displayName: ShippingRateInputType type: object discriminator: type diff --git a/api-specs/api/types/project/updates/ProjectChangeBusinessUnitStatusOnCreationAction.raml b/api-specs/api/types/project/updates/ProjectChangeBusinessUnitStatusOnCreationAction.raml index 3b7587efd3..f79f11bb5c 100644 --- a/api-specs/api/types/project/updates/ProjectChangeBusinessUnitStatusOnCreationAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeBusinessUnitStatusOnCreationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-my-business-unit-status-on-creation type: ProjectUpdateAction displayName: ProjectChangeBusinessUnitStatusOnCreationAction discriminatorValue: changeMyBusinessUnitStatusOnCreation diff --git a/api-specs/api/types/project/updates/ProjectChangeCartsConfigurationAction.raml b/api-specs/api/types/project/updates/ProjectChangeCartsConfigurationAction.raml index 5c9187dc0c..742e521824 100644 --- a/api-specs/api/types/project/updates/ProjectChangeCartsConfigurationAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeCartsConfigurationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-carts-configuration type: ProjectUpdateAction displayName: ProjectChangeCartsConfigurationAction discriminatorValue: changeCartsConfiguration diff --git a/api-specs/api/types/project/updates/ProjectChangeCountriesAction.raml b/api-specs/api/types/project/updates/ProjectChangeCountriesAction.raml index 4ccb64ec8b..ffda1c4c52 100644 --- a/api-specs/api/types/project/updates/ProjectChangeCountriesAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeCountriesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-countries type: ProjectUpdateAction displayName: ProjectChangeCountriesAction discriminatorValue: changeCountries diff --git a/api-specs/api/types/project/updates/ProjectChangeCountryTaxRateFallbackEnabledAction.raml b/api-specs/api/types/project/updates/ProjectChangeCountryTaxRateFallbackEnabledAction.raml index d77c19515e..bc6b876d34 100644 --- a/api-specs/api/types/project/updates/ProjectChangeCountryTaxRateFallbackEnabledAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeCountryTaxRateFallbackEnabledAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-country-tax-rate-fallback-enabled type: ProjectUpdateAction displayName: ProjectChangeCountryTaxRateFallbackEnabledAction discriminatorValue: changeCountryTaxRateFallbackEnabled diff --git a/api-specs/api/types/project/updates/ProjectChangeCurrenciesAction.raml b/api-specs/api/types/project/updates/ProjectChangeCurrenciesAction.raml index 1ed00593ca..3e0cca8f4e 100644 --- a/api-specs/api/types/project/updates/ProjectChangeCurrenciesAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeCurrenciesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-currencies type: ProjectUpdateAction displayName: ProjectChangeCurrenciesAction discriminatorValue: changeCurrencies diff --git a/api-specs/api/types/project/updates/ProjectChangeLanguagesAction.raml b/api-specs/api/types/project/updates/ProjectChangeLanguagesAction.raml index 63109e4492..17998ee25d 100644 --- a/api-specs/api/types/project/updates/ProjectChangeLanguagesAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeLanguagesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-languages type: ProjectUpdateAction displayName: ProjectChangeLanguagesAction discriminatorValue: changeLanguages diff --git a/api-specs/api/types/project/updates/ProjectChangeMessagesConfigurationAction.raml b/api-specs/api/types/project/updates/ProjectChangeMessagesConfigurationAction.raml index c76078a831..ad61f6e935 100644 --- a/api-specs/api/types/project/updates/ProjectChangeMessagesConfigurationAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeMessagesConfigurationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-messages-configuration type: ProjectUpdateAction displayName: ProjectChangeMessagesConfigurationAction discriminatorValue: changeMessagesConfiguration diff --git a/api-specs/api/types/project/updates/ProjectChangeMessagesEnabledAction.raml b/api-specs/api/types/project/updates/ProjectChangeMessagesEnabledAction.raml index 98f567d14e..449839d75d 100644 --- a/api-specs/api/types/project/updates/ProjectChangeMessagesEnabledAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeMessagesEnabledAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-messages-enabled (deprecated): true type: ProjectUpdateAction displayName: ProjectChangeMessagesEnabledAction diff --git a/api-specs/api/types/project/updates/ProjectChangeNameAction.raml b/api-specs/api/types/project/updates/ProjectChangeNameAction.raml index 4e4d0dc686..334ec70da5 100644 --- a/api-specs/api/types/project/updates/ProjectChangeNameAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-name type: ProjectUpdateAction displayName: ProjectChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/project/updates/ProjectChangeOrderSearchStatusAction.raml b/api-specs/api/types/project/updates/ProjectChangeOrderSearchStatusAction.raml index a343a27eac..8a71d205dd 100644 --- a/api-specs/api/types/project/updates/ProjectChangeOrderSearchStatusAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeOrderSearchStatusAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-order-search-status type: ProjectUpdateAction (beta): true displayName: ProjectChangeOrderSearchStatusAction diff --git a/api-specs/api/types/project/updates/ProjectChangeProductSearchIndexingEnabledAction.raml b/api-specs/api/types/project/updates/ProjectChangeProductSearchIndexingEnabledAction.raml index cf98107f56..e39ea26c9c 100644 --- a/api-specs/api/types/project/updates/ProjectChangeProductSearchIndexingEnabledAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeProductSearchIndexingEnabledAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-product-search-indexing-enabled type: ProjectUpdateAction displayName: ProjectChangeProductSearchIndexingEnabledAction discriminatorValue: changeProductSearchIndexingEnabled @@ -11,3 +10,9 @@ properties: description: | - If `false`, the indexing of [Product](ctp:api:type:Product) information will stop and the [Product Projection Search](/../api/projects/products-search) as well as the [Product Suggestions](/../api/projects/products-suggestions) endpoint will not be available anymore for this Project. The Project's [SearchIndexingConfiguration](ctp:api:type:SearchIndexingConfiguration) `status` for `products` will be changed to `"Deactivated"`. - If `true`, the indexing of [Product](ctp:api:type:Product) information will start and the [Product Projection Search](/../api/projects/products-search) as well as the [Product Suggestions](/../api/projects/products-suggestions) endpoint will become available soon after for this Project. Proportional to the amount of information being indexed, the Project's [SearchIndexingConfiguration](ctp:api:type:SearchIndexingConfiguration) `status` for `products` will be shown as `"Indexing"` during this time. As soon as the indexing has finished, the configuration status will be changed to `"Activated"` making the aforementioned endpoints fully available for this Project. + mode?: + type: ProductSearchIndexingMode + (beta): true + description: | + Controls whether the action should apply to [Product Projection Search](/../api/projects/products-search) or to [Product Search](/../api/projects/product-search). + default: ProductProjectionsSearch diff --git a/api-specs/api/types/project/updates/ProjectChangeShoppingListsConfigurationAction.raml b/api-specs/api/types/project/updates/ProjectChangeShoppingListsConfigurationAction.raml index 4af56fac0b..7a4882a13b 100644 --- a/api-specs/api/types/project/updates/ProjectChangeShoppingListsConfigurationAction.raml +++ b/api-specs/api/types/project/updates/ProjectChangeShoppingListsConfigurationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#change-carts-configuration type: ProjectUpdateAction displayName: ProjectChangeShoppingListsConfigurationAction discriminatorValue: changeShoppingListsConfiguration diff --git a/api-specs/api/types/project/updates/ProjectSetBusinessUnitAssociateRoleOnCreationAction.raml b/api-specs/api/types/project/updates/ProjectSetBusinessUnitAssociateRoleOnCreationAction.raml index 100bc60050..4f3f84ba86 100644 --- a/api-specs/api/types/project/updates/ProjectSetBusinessUnitAssociateRoleOnCreationAction.raml +++ b/api-specs/api/types/project/updates/ProjectSetBusinessUnitAssociateRoleOnCreationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#set-my-business-unit-associate-role-on-creation type: ProjectUpdateAction displayName: ProjectSetBusinessUnitAssociateRoleOnCreationAction discriminatorValue: setMyBusinessUnitAssociateRoleOnCreation diff --git a/api-specs/api/types/project/updates/ProjectSetExternalOAuthAction.raml b/api-specs/api/types/project/updates/ProjectSetExternalOAuthAction.raml index 7723dcd8cf..ab987b22c9 100644 --- a/api-specs/api/types/project/updates/ProjectSetExternalOAuthAction.raml +++ b/api-specs/api/types/project/updates/ProjectSetExternalOAuthAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#set-externaloauth type: ProjectUpdateAction displayName: ProjectSetExternalOAuthAction discriminatorValue: setExternalOAuth diff --git a/api-specs/api/types/project/updates/ProjectSetShippingRateInputTypeAction.raml b/api-specs/api/types/project/updates/ProjectSetShippingRateInputTypeAction.raml index 7d9e641b92..1bcc79dc5c 100644 --- a/api-specs/api/types/project/updates/ProjectSetShippingRateInputTypeAction.raml +++ b/api-specs/api/types/project/updates/ProjectSetShippingRateInputTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Project -(docs-uri): https://docs.commercetools.com/api/projects/project#set-shippingrateinputtype type: ProjectUpdateAction displayName: ProjectSetShippingRateInputTypeAction discriminatorValue: setShippingRateInputType diff --git a/api-specs/api/types/quote-request/QuoteRequest.raml b/api-specs/api/types/quote-request/QuoteRequest.raml index d1cec95555..4c93a41652 100644 --- a/api-specs/api/types/quote-request/QuoteRequest.raml +++ b/api-specs/api/types/quote-request/QuoteRequest.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#quoterequest type: BaseResource displayName: QuoteRequest (updateType): QuoteRequestUpdate @@ -34,12 +33,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the QuoteRequest. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the QuoteRequest. quoteRequestState: type: QuoteRequestState description: | diff --git a/api-specs/api/types/quote-request/QuoteRequestDraft.raml b/api-specs/api/types/quote-request/QuoteRequestDraft.raml index 0981cea6f3..edffc7b097 100644 --- a/api-specs/api/types/quote-request/QuoteRequestDraft.raml +++ b/api-specs/api/types/quote-request/QuoteRequestDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#quoterequestdraft type: object displayName: QuoteRequestDraft properties: diff --git a/api-specs/api/types/quote-request/QuoteRequestReference.raml b/api-specs/api/types/quote-request/QuoteRequestReference.raml index 387c095318..cb03d5769c 100644 --- a/api-specs/api/types/quote-request/QuoteRequestReference.raml +++ b/api-specs/api/types/quote-request/QuoteRequestReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#quoterequest type: Reference displayName: QuoteRequestReference discriminatorValue: quote-request diff --git a/api-specs/api/types/quote-request/QuoteRequestResourceIdentifier.raml b/api-specs/api/types/quote-request/QuoteRequestResourceIdentifier.raml index e7fe764458..8adbd86f86 100644 --- a/api-specs/api/types/quote-request/QuoteRequestResourceIdentifier.raml +++ b/api-specs/api/types/quote-request/QuoteRequestResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): type: ResourceIdentifier displayName: QuoteRequestResourceIdentifier discriminatorValue: quote-request diff --git a/api-specs/api/types/quote-request/QuoteRequestState.raml b/api-specs/api/types/quote-request/QuoteRequestState.raml index d6951fee6a..6c2205fad5 100644 --- a/api-specs/api/types/quote-request/QuoteRequestState.raml +++ b/api-specs/api/types/quote-request/QuoteRequestState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#quoterequeststate displayName: QuoteRequestState type: string description: | diff --git a/api-specs/api/types/quote-request/updates/QuoteRequestChangeCustomerAction.raml b/api-specs/api/types/quote-request/updates/QuoteRequestChangeCustomerAction.raml index 780b6db67b..cf1800ac7d 100644 --- a/api-specs/api/types/quote-request/updates/QuoteRequestChangeCustomerAction.raml +++ b/api-specs/api/types/quote-request/updates/QuoteRequestChangeCustomerAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#change-customer type: QuoteRequestUpdateAction displayName: QuoteRequestChangeCustomerAction discriminatorValue: changeCustomer diff --git a/api-specs/api/types/quote-request/updates/QuoteRequestChangeQuoteRequestStateAction.raml b/api-specs/api/types/quote-request/updates/QuoteRequestChangeQuoteRequestStateAction.raml index 8c987955a0..f3a93db510 100644 --- a/api-specs/api/types/quote-request/updates/QuoteRequestChangeQuoteRequestStateAction.raml +++ b/api-specs/api/types/quote-request/updates/QuoteRequestChangeQuoteRequestStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#change-quote-request-state type: QuoteRequestUpdateAction displayName: QuoteRequestChangeQuoteRequestStateAction discriminatorValue: changeQuoteRequestState diff --git a/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomFieldAction.raml b/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomFieldAction.raml index 870eab385e..89e114f570 100644 --- a/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomFieldAction.raml +++ b/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#set-custom-field type: QuoteRequestUpdateAction displayName: QuoteRequestSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomTypeAction.raml b/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomTypeAction.raml index eff323f47c..5edba46b84 100644 --- a/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomTypeAction.raml +++ b/api-specs/api/types/quote-request/updates/QuoteRequestSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#set-custom-type type: QuoteRequestUpdateAction displayName: QuoteRequestSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/quote-request/updates/QuoteRequestTransitionStateAction.raml b/api-specs/api/types/quote-request/updates/QuoteRequestTransitionStateAction.raml index 132bfccea7..649cdd9569 100644 --- a/api-specs/api/types/quote-request/updates/QuoteRequestTransitionStateAction.raml +++ b/api-specs/api/types/quote-request/updates/QuoteRequestTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): QuoteRequest -(docs-uri): https://docs.commercetools.com/api/projects/quote-requests#transitionstate type: QuoteRequestUpdateAction displayName: QuoteRequestTransitionStateAction discriminatorValue: transitionState diff --git a/api-specs/api/types/quote/Quote.raml b/api-specs/api/types/quote/Quote.raml index 1a0ac1c3a6..6e694a69ff 100644 --- a/api-specs/api/types/quote/Quote.raml +++ b/api-specs/api/types/quote/Quote.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes#quote type: BaseResource displayName: Quote (updateType): QuoteUpdate @@ -34,12 +33,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Quote. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Quote. quoteRequest: type: QuoteRequestReference description: | diff --git a/api-specs/api/types/quote/QuoteDraft.raml b/api-specs/api/types/quote/QuoteDraft.raml index 69ea936720..2df579fbb8 100644 --- a/api-specs/api/types/quote/QuoteDraft.raml +++ b/api-specs/api/types/quote/QuoteDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes#quotedraft type: object displayName: QuoteDraft properties: diff --git a/api-specs/api/types/quote/QuoteReference.raml b/api-specs/api/types/quote/QuoteReference.raml index 19e8648175..35a889c210 100644 --- a/api-specs/api/types/quote/QuoteReference.raml +++ b/api-specs/api/types/quote/QuoteReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quote.html#quote type: Reference displayName: QuoteReference discriminatorValue: quote diff --git a/api-specs/api/types/quote/QuoteResourceIdentifier.raml b/api-specs/api/types/quote/QuoteResourceIdentifier.raml index ce89b1a3d9..60032bb35e 100644 --- a/api-specs/api/types/quote/QuoteResourceIdentifier.raml +++ b/api-specs/api/types/quote/QuoteResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): type: ResourceIdentifier displayName: QuoteResourceIdentifier discriminatorValue: quote diff --git a/api-specs/api/types/quote/QuoteState.raml b/api-specs/api/types/quote/QuoteState.raml index cc1a037ad3..d6d1e9c525 100644 --- a/api-specs/api/types/quote/QuoteState.raml +++ b/api-specs/api/types/quote/QuoteState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes.html#quotestate displayName: QuoteState type: string description: | diff --git a/api-specs/api/types/quote/updates/QuoteChangeCustomerAction.raml b/api-specs/api/types/quote/updates/QuoteChangeCustomerAction.raml index 16ba16cbea..fecdefe410 100644 --- a/api-specs/api/types/quote/updates/QuoteChangeCustomerAction.raml +++ b/api-specs/api/types/quote/updates/QuoteChangeCustomerAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes.html#change-customer type: QuoteUpdateAction displayName: QuoteChangeCustomerAction discriminatorValue: changeCustomer diff --git a/api-specs/api/types/quote/updates/QuoteChangeQuoteStateAction.raml b/api-specs/api/types/quote/updates/QuoteChangeQuoteStateAction.raml index 09383c5e36..47e6a38c85 100644 --- a/api-specs/api/types/quote/updates/QuoteChangeQuoteStateAction.raml +++ b/api-specs/api/types/quote/updates/QuoteChangeQuoteStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes.html#change-quote-state type: QuoteUpdateAction displayName: QuoteChangeQuoteStateAction discriminatorValue: changeQuoteState diff --git a/api-specs/api/types/quote/updates/QuoteRequestQuoteRenegotiationAction.raml b/api-specs/api/types/quote/updates/QuoteRequestQuoteRenegotiationAction.raml index 06b54e6f2a..fca969dfd2 100644 --- a/api-specs/api/types/quote/updates/QuoteRequestQuoteRenegotiationAction.raml +++ b/api-specs/api/types/quote/updates/QuoteRequestQuoteRenegotiationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes.html#request-quote-renegotiation type: QuoteUpdateAction displayName: QuoteRequestQuoteRenegotiationAction discriminatorValue: requestQuoteRenegotiation diff --git a/api-specs/api/types/quote/updates/QuoteSetCustomFieldAction.raml b/api-specs/api/types/quote/updates/QuoteSetCustomFieldAction.raml index c0e5e28984..b07f92f14b 100644 --- a/api-specs/api/types/quote/updates/QuoteSetCustomFieldAction.raml +++ b/api-specs/api/types/quote/updates/QuoteSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes.html#set-custom-field type: QuoteUpdateAction displayName: QuoteSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/quote/updates/QuoteSetCustomTypeAction.raml b/api-specs/api/types/quote/updates/QuoteSetCustomTypeAction.raml index 646a1b927b..adb2124dc3 100644 --- a/api-specs/api/types/quote/updates/QuoteSetCustomTypeAction.raml +++ b/api-specs/api/types/quote/updates/QuoteSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/http-api-projects-quotes.html#set-custom-type type: QuoteUpdateAction displayName: QuoteSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/quote/updates/QuoteTransitionStateAction.raml b/api-specs/api/types/quote/updates/QuoteTransitionStateAction.raml index 18f6cb47f8..d3eb0d05df 100644 --- a/api-specs/api/types/quote/updates/QuoteTransitionStateAction.raml +++ b/api-specs/api/types/quote/updates/QuoteTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Quote -(docs-uri): https://docs.commercetools.com/api/projects/quotes#transitionstate type: QuoteUpdateAction displayName: QuoteTransitionStateAction discriminatorValue: transitionState diff --git a/api-specs/api/types/review/Review.raml b/api-specs/api/types/review/Review.raml index e71d6649f3..7b8bc8fdc1 100644 --- a/api-specs/api/types/review/Review.raml +++ b/api-specs/api/types/review/Review.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#review type: BaseResource displayName: Review (updateType): ReviewUpdate @@ -26,12 +25,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Review. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Review. key?: type: string description: | diff --git a/api-specs/api/types/review/ReviewDraft.raml b/api-specs/api/types/review/ReviewDraft.raml index 21e4612f10..ea30b4b55b 100644 --- a/api-specs/api/types/review/ReviewDraft.raml +++ b/api-specs/api/types/review/ReviewDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#reviewdraft type: object displayName: ReviewDraft example: !include ../../examples/review-create.example.json diff --git a/api-specs/api/types/review/ReviewRatingStatistics.raml b/api-specs/api/types/review/ReviewRatingStatistics.raml index 1ce1c11cbc..ab6218c310 100644 --- a/api-specs/api/types/review/ReviewRatingStatistics.raml +++ b/api-specs/api/types/review/ReviewRatingStatistics.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#reviewratingstatistics displayName: ReviewRatingStatistics type: object properties: diff --git a/api-specs/api/types/review/updates/ReviewSetAuthorNameAction.raml b/api-specs/api/types/review/updates/ReviewSetAuthorNameAction.raml index f8503d9d67..72ac67c4e2 100644 --- a/api-specs/api/types/review/updates/ReviewSetAuthorNameAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetAuthorNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-author-name type: ReviewUpdateAction displayName: ReviewSetAuthorNameAction discriminatorValue: setAuthorName diff --git a/api-specs/api/types/review/updates/ReviewSetCustomFieldAction.raml b/api-specs/api/types/review/updates/ReviewSetCustomFieldAction.raml index ce181a4969..ef061f1924 100644 --- a/api-specs/api/types/review/updates/ReviewSetCustomFieldAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-customfield type: ReviewUpdateAction displayName: ReviewSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/review/updates/ReviewSetCustomTypeAction.raml b/api-specs/api/types/review/updates/ReviewSetCustomTypeAction.raml index 8e3fb4bde6..ac5969f2c7 100644 --- a/api-specs/api/types/review/updates/ReviewSetCustomTypeAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-custom-type type: ReviewUpdateAction displayName: ReviewSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/review/updates/ReviewSetCustomerAction.raml b/api-specs/api/types/review/updates/ReviewSetCustomerAction.raml index 825e72a141..5570783b1b 100644 --- a/api-specs/api/types/review/updates/ReviewSetCustomerAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetCustomerAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-customer type: ReviewUpdateAction displayName: ReviewSetCustomerAction discriminatorValue: setCustomer diff --git a/api-specs/api/types/review/updates/ReviewSetKeyAction.raml b/api-specs/api/types/review/updates/ReviewSetKeyAction.raml index aa04dcc592..a6677e6799 100644 --- a/api-specs/api/types/review/updates/ReviewSetKeyAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-key type: ReviewUpdateAction displayName: ReviewSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/review/updates/ReviewSetLocaleAction.raml b/api-specs/api/types/review/updates/ReviewSetLocaleAction.raml index 2ccece51fa..451ef43ab9 100644 --- a/api-specs/api/types/review/updates/ReviewSetLocaleAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetLocaleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-locale type: ReviewUpdateAction displayName: ReviewSetLocaleAction discriminatorValue: setLocale diff --git a/api-specs/api/types/review/updates/ReviewSetRatingAction.raml b/api-specs/api/types/review/updates/ReviewSetRatingAction.raml index 08b45337a1..71713902f1 100644 --- a/api-specs/api/types/review/updates/ReviewSetRatingAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetRatingAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-rating type: ReviewUpdateAction displayName: ReviewSetRatingAction discriminatorValue: setRating diff --git a/api-specs/api/types/review/updates/ReviewSetTargetAction.raml b/api-specs/api/types/review/updates/ReviewSetTargetAction.raml index 9c572a76ae..22941717de 100644 --- a/api-specs/api/types/review/updates/ReviewSetTargetAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetTargetAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-target type: ReviewUpdateAction displayName: ReviewSetTargetAction discriminatorValue: setTarget diff --git a/api-specs/api/types/review/updates/ReviewSetTextAction.raml b/api-specs/api/types/review/updates/ReviewSetTextAction.raml index a18ad4769d..802a750f37 100644 --- a/api-specs/api/types/review/updates/ReviewSetTextAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetTextAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-text type: ReviewUpdateAction displayName: ReviewSetTextAction discriminatorValue: setText diff --git a/api-specs/api/types/review/updates/ReviewSetTitleAction.raml b/api-specs/api/types/review/updates/ReviewSetTitleAction.raml index 81517b8766..85d2f23ba8 100644 --- a/api-specs/api/types/review/updates/ReviewSetTitleAction.raml +++ b/api-specs/api/types/review/updates/ReviewSetTitleAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#set-title type: ReviewUpdateAction displayName: ReviewSetTitleAction discriminatorValue: setTitle diff --git a/api-specs/api/types/review/updates/ReviewTransitionStateAction.raml b/api-specs/api/types/review/updates/ReviewTransitionStateAction.raml index aed0b8c9c6..3919091028 100644 --- a/api-specs/api/types/review/updates/ReviewTransitionStateAction.raml +++ b/api-specs/api/types/review/updates/ReviewTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Review -(docs-uri): https://docs.commercetools.com/http-api-projects-reviews.html#transition-state type: ReviewUpdateAction displayName: ReviewTransitionStateAction discriminatorValue: transitionState diff --git a/api-specs/api/types/search/SearchAndExpression.raml b/api-specs/api/types/search/SearchAndExpression.raml new file mode 100644 index 0000000000..91e0841ddf --- /dev/null +++ b/api-specs/api/types/search/SearchAndExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchCompoundExpression +(beta): true +displayName: SearchAndExpression +properties: + and: + type: SearchQuery[] diff --git a/api-specs/api/types/search/SearchAnyValue.raml b/api-specs/api/types/search/SearchAnyValue.raml new file mode 100644 index 0000000000..7cdfb614cc --- /dev/null +++ b/api-specs/api/types/search/SearchAnyValue.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchAnyValue +properties: + value: + type: any + language?: + type: Locale + caseInsensitive?: + type: boolean diff --git a/api-specs/api/types/search/SearchCompoundExpression.raml b/api-specs/api/types/search/SearchCompoundExpression.raml new file mode 100644 index 0000000000..643a2dbd51 --- /dev/null +++ b/api-specs/api/types/search/SearchCompoundExpression.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQuery +(beta): true +displayName: SearchCompoundExpression +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/search/SearchDateRangeExpression.raml b/api-specs/api/types/search/SearchDateRangeExpression.raml new file mode 100644 index 0000000000..bd5797c24a --- /dev/null +++ b/api-specs/api/types/search/SearchDateRangeExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchDateRangeExpression +properties: + range: + type: SearchDateRangeValue diff --git a/api-specs/api/types/search/SearchDateRangeValue.raml b/api-specs/api/types/search/SearchDateRangeValue.raml new file mode 100644 index 0000000000..934f3b87d8 --- /dev/null +++ b/api-specs/api/types/search/SearchDateRangeValue.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchDateRangeValue +properties: + gte?: + type: date-only + gt?: + type: date-only + lte?: + type: date-only + lt?: + type: date-only diff --git a/api-specs/api/types/search/SearchDateTimeRangeExpression.raml b/api-specs/api/types/search/SearchDateTimeRangeExpression.raml new file mode 100644 index 0000000000..d4bd97ecd6 --- /dev/null +++ b/api-specs/api/types/search/SearchDateTimeRangeExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchDateTimeRangeExpression +properties: + range: + type: SearchDateTimeRangeValue diff --git a/api-specs/api/types/search/SearchDateTimeRangeValue.raml b/api-specs/api/types/search/SearchDateTimeRangeValue.raml new file mode 100644 index 0000000000..20b5e0dee8 --- /dev/null +++ b/api-specs/api/types/search/SearchDateTimeRangeValue.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchDateTimeRangeValue +properties: + gte?: + type: datetime + gt?: + type: datetime + lte?: + type: datetime + lt?: + type: datetime diff --git a/api-specs/api/types/search/SearchExactExpression.raml b/api-specs/api/types/search/SearchExactExpression.raml new file mode 100644 index 0000000000..5149efa7f3 --- /dev/null +++ b/api-specs/api/types/search/SearchExactExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchExactExpression +properties: + exact: + type: SearchAnyValue diff --git a/api-specs/api/types/search/SearchExistsExpression.raml b/api-specs/api/types/search/SearchExistsExpression.raml new file mode 100644 index 0000000000..89c7f2ef51 --- /dev/null +++ b/api-specs/api/types/search/SearchExistsExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchExistsExpression +properties: + exists: + type: SearchExistsValue diff --git a/api-specs/api/types/search/SearchExistsValue.raml b/api-specs/api/types/search/SearchExistsValue.raml new file mode 100644 index 0000000000..0071d2216b --- /dev/null +++ b/api-specs/api/types/search/SearchExistsValue.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchExistsValue +properties: + language?: + type: Locale diff --git a/api-specs/api/types/search/SearchFieldType.raml b/api-specs/api/types/search/SearchFieldType.raml new file mode 100644 index 0000000000..3055f32145 --- /dev/null +++ b/api-specs/api/types/search/SearchFieldType.raml @@ -0,0 +1,74 @@ +#%RAML 1.0 DataType +(package): Search +displayName: SearchFieldType +description: Possible values for the `fieldType` property on [query expressions](/../api/search-query-language#query-expressions) indicating the data type of the `field`. +type: string +(beta): true +enum: + - boolean + - text + - ltext + - enum + - lenum + - number + - money + - date + - datetime + - time + - reference + - set_boolean + - set_text + - set_ltext + - set_enum + - set_lenum + - set_number + - set_money + - set_date + - set_datetime + - set_time + - set_reference +(enumDescriptions): + boolean: | + For Boolean fields and [AttributeBooleanType](ctp:api:type:AttributeBooleanType) Attributes. + text: | + For string fields and [AttributeTextType](ctp:api:type:AttributeTextType) Attributes. + ltext: | + For [LocalizedString](types#localizedstring) fields and [AttributeLocalizableTextType](ctp:api:type:AttributeLocalizableTextType) Attributes. + enum: | + For enum fields and [AttributeEnumType](ctp:api:type:AttributeEnumType) Attributes. + lenum: | + For localized enum fields and [AttributeLocalizedEnumType](ctp:api:type:AttributeLocalizedEnumType) Attributes. + number: | + For number fields and [AttributeNumberType](ctp:api:type:AttributeNumberType) Attributes. + money: | + For [Money](types#money) fields and [AttributeMoneyType](ctp:api:type:AttributeMoneyType) Attributes. + date: | + For [Date](types#date) fields and [AttributeDateType](ctp:api:type:AttributeDateType) Attributes. + datetime: | + For [DateTime](types#datetime) fields and [AttributeDateTimeType](ctp:api:type:AttributeDateTimeType) Attributes. + time: | + For [Time](types#time) fields and [AttributeTimeType](ctp:api:type:AttributeTimeType) Attributes. + reference: | + For [Reference](types#reference) fields and [AttributeReferenceType](ctp:api:type:AttributeReferenceType) Attributes. + set_boolean: | + For Set of Boolean fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `boolean` Attributes. + set_text: | + For Set of string fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `text` Attributes. + set_ltext: | + For Set of [LocalizedString](types#localizedstring) fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `ltext` Attributes. + set_enum: | + For Set of enum fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `enum` Attributes. + set_lenum: | + For Set of localized enum fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `lenum` Attributes. + set_number: | + For Set of number fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `number` Attributes. + set_money: | + For Set of [Money](types#money) fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `money` Attributes. + set_date: | + For Set of [Date](types#date) fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `date` Attributes. + set_datetime: | + For Set of [DateTime](types#datetime) fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `datetime` Attributes. + set_time: | + For Set of [Time](types#time) fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `time` Attributes. + set_reference: | + For Set of [Reference](types#reference) fields and [AttributeSetType](ctp:api:type:AttributeSetType) of `reference` Attributes. diff --git a/api-specs/api/types/search/SearchFilterExpression.raml b/api-specs/api/types/search/SearchFilterExpression.raml new file mode 100644 index 0000000000..5fa03289a0 --- /dev/null +++ b/api-specs/api/types/search/SearchFilterExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchCompoundExpression +(beta): true +displayName: SearchFilterExpression +properties: + filter: + type: SearchQueryExpression[] diff --git a/api-specs/api/types/search/SearchFullTextExpression.raml b/api-specs/api/types/search/SearchFullTextExpression.raml new file mode 100644 index 0000000000..f3bad3360c --- /dev/null +++ b/api-specs/api/types/search/SearchFullTextExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchFullTextExpression +properties: + fullText: + type: SearchFullTextValue diff --git a/api-specs/api/types/search/SearchFullTextPrefixExpression.raml b/api-specs/api/types/search/SearchFullTextPrefixExpression.raml new file mode 100644 index 0000000000..c6ba2a60f3 --- /dev/null +++ b/api-specs/api/types/search/SearchFullTextPrefixExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchFullTextPrefixExpression +properties: + fullTextPrefix: + type: SearchFullTextPrefixValue diff --git a/api-specs/api/types/search/SearchFullTextPrefixValue.raml b/api-specs/api/types/search/SearchFullTextPrefixValue.raml new file mode 100644 index 0000000000..9abd7905df --- /dev/null +++ b/api-specs/api/types/search/SearchFullTextPrefixValue.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchFullPrefixTextValue +properties: + value: + type: any + language?: + type: Locale + mustMatch?: + type: SearchMatchType diff --git a/api-specs/api/types/search/SearchFullTextValue.raml b/api-specs/api/types/search/SearchFullTextValue.raml new file mode 100644 index 0000000000..2be55f7c0b --- /dev/null +++ b/api-specs/api/types/search/SearchFullTextValue.raml @@ -0,0 +1,12 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchFullTextValue +properties: + value: + type: any + language?: + type: Locale + mustMatch?: + type: SearchMatchType diff --git a/api-specs/api/types/search/SearchLongRangeExpression.raml b/api-specs/api/types/search/SearchLongRangeExpression.raml new file mode 100644 index 0000000000..f52d994e77 --- /dev/null +++ b/api-specs/api/types/search/SearchLongRangeExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchLongRangeExpression +properties: + range: + type: SearchLongRangeValue diff --git a/api-specs/api/types/search/SearchLongRangeValue.raml b/api-specs/api/types/search/SearchLongRangeValue.raml new file mode 100644 index 0000000000..d8ca375163 --- /dev/null +++ b/api-specs/api/types/search/SearchLongRangeValue.raml @@ -0,0 +1,18 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchLongRangeValue +properties: + gte?: + type: number + format: int64 + gt?: + type: number + format: int64 + lte?: + type: number + format: int64 + lt?: + type: number + format: int64 diff --git a/api-specs/api/types/search/SearchMatchType.raml b/api-specs/api/types/search/SearchMatchType.raml new file mode 100644 index 0000000000..27b539b690 --- /dev/null +++ b/api-specs/api/types/search/SearchMatchType.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): Search +displayName: SearchMatchType +type: string +(beta): true +enum: + - any + - all +(enumDescriptions): + any: | + Returns resources for which at least one of the provided search terms match. + all: | + Returns only those resources for which all the provided search terms match. diff --git a/api-specs/api/types/search/SearchMatchingVariant.raml b/api-specs/api/types/search/SearchMatchingVariant.raml new file mode 100644 index 0000000000..26aea76c73 --- /dev/null +++ b/api-specs/api/types/search/SearchMatchingVariant.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): Search +displayName: SearchMatchingVariant +type: object +(beta): true +properties: + id: + type: number + format: int32 + description: Unique identifier of the variant. + sku?: + type: string + description: SKU of the matching variant. diff --git a/api-specs/api/types/search/SearchNotExpression.raml b/api-specs/api/types/search/SearchNotExpression.raml new file mode 100644 index 0000000000..d39738d628 --- /dev/null +++ b/api-specs/api/types/search/SearchNotExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchCompoundExpression +(beta): true +displayName: SearchNotExpression +properties: + not: + type: SearchQuery[] diff --git a/api-specs/api/types/search/SearchNumberRangeExpression.raml b/api-specs/api/types/search/SearchNumberRangeExpression.raml new file mode 100644 index 0000000000..18f7082178 --- /dev/null +++ b/api-specs/api/types/search/SearchNumberRangeExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchNumberRangeExpression +properties: + range: + type: SearchNumberRangeValue diff --git a/api-specs/api/types/search/SearchNumberRangeValue.raml b/api-specs/api/types/search/SearchNumberRangeValue.raml new file mode 100644 index 0000000000..5bbcdbb839 --- /dev/null +++ b/api-specs/api/types/search/SearchNumberRangeValue.raml @@ -0,0 +1,18 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchNumberRangeValue +properties: + gte?: + type: number + format: float + gt?: + type: number + format: float + lte?: + type: number + format: float + lt?: + type: number + format: float diff --git a/api-specs/api/types/search/SearchOrExpression.raml b/api-specs/api/types/search/SearchOrExpression.raml new file mode 100644 index 0000000000..6fe39b43a2 --- /dev/null +++ b/api-specs/api/types/search/SearchOrExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchCompoundExpression +(beta): true +displayName: SearchOrExpression +properties: + or: + type: SearchQuery[] diff --git a/api-specs/api/types/search/SearchPrefixExpression.raml b/api-specs/api/types/search/SearchPrefixExpression.raml new file mode 100644 index 0000000000..85a5c58d6a --- /dev/null +++ b/api-specs/api/types/search/SearchPrefixExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchPrefixExpression +properties: + prefix: + type: SearchAnyValue diff --git a/api-specs/api/types/search/SearchQuery.raml b/api-specs/api/types/search/SearchQuery.raml new file mode 100644 index 0000000000..41c39166ec --- /dev/null +++ b/api-specs/api/types/search/SearchQuery.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 DataType +(package): Search +type: object +(beta): true +displayName: SearchQuery +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/search/SearchQueryExpression.raml b/api-specs/api/types/search/SearchQueryExpression.raml new file mode 100644 index 0000000000..5b8018d57b --- /dev/null +++ b/api-specs/api/types/search/SearchQueryExpression.raml @@ -0,0 +1,6 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQuery +(beta): true +displayName: SearchQueryExpression +(ignoreValidators): [PolymorphicSubtypesRule] diff --git a/api-specs/api/types/search/SearchQueryExpressionValue.raml b/api-specs/api/types/search/SearchQueryExpressionValue.raml new file mode 100644 index 0000000000..fff35d97c1 --- /dev/null +++ b/api-specs/api/types/search/SearchQueryExpressionValue.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +(package): Search +type: object +(beta): true +displayName: SearchQueryExpressionValue +(ignoreValidators): [PolymorphicSubtypesRule] +properties: + field: + type: string + boost?: + format: double + type: number + fieldType?: + type: SearchFieldType diff --git a/api-specs/api/types/search/SearchSortMode.raml b/api-specs/api/types/search/SearchSortMode.raml new file mode 100644 index 0000000000..19a5cc7001 --- /dev/null +++ b/api-specs/api/types/search/SearchSortMode.raml @@ -0,0 +1,22 @@ +#%RAML 1.0 DataType +(package): Search +displayName: SearchSortMode +type: string +(beta): true +description: | + For set-type fields, only a single value of the set is taken into account for sorting. + The sort mode determines whether the minimum or maximum value, or a calculated statistical value should be used as sorting value. +enum: + - min + - max + - avg + - sum +(enumDescriptions): + min: | + Use the minimum of all available values. + max: | + Use the maximum of all available values. + avg: | + Use the average of all available values. + sum: | + Use the sum of all available values. diff --git a/api-specs/api/types/search/SearchSortOrder.raml b/api-specs/api/types/search/SearchSortOrder.raml new file mode 100644 index 0000000000..91253cfda0 --- /dev/null +++ b/api-specs/api/types/search/SearchSortOrder.raml @@ -0,0 +1,13 @@ +#%RAML 1.0 DataType +(package): Search +displayName: SearchSortOrder +type: string +(beta): true +enum: + - asc + - desc +(enumDescriptions): + asc: | + Ascending sort order, the lowest value is listed first. + desc: | + Descending sort order, the highest value listed first. diff --git a/api-specs/api/types/search/SearchSorting.raml b/api-specs/api/types/search/SearchSorting.raml new file mode 100644 index 0000000000..bb747f7034 --- /dev/null +++ b/api-specs/api/types/search/SearchSorting.raml @@ -0,0 +1,33 @@ +#%RAML 1.0 DataType +(package): Search +type: object +(beta): true +displayName: SearchSorting +description: | + Sorting parameters provided with a Search request. + Sorting allows you to control how results to your query are sorted. + If no sorting is specified, the results are sorted by relevance in descending (`desc`) order. +properties: + field: + type: string + description: | + Use any searchable field of the resource as sort criterion. + language?: + type: Locale + order: + type: SearchSortOrder + description: | + Specify the order in which the search results should be sorted. + Can be `asc` for ascending, or `desc` for descending order. + mode?: + type: SearchSortMode + description: | + Specify the sort mode to be applied for a set-type `field`. + fieldType?: + type: SearchFieldType + description: | + Provide the data type of the given `field`. + filter?: + type: SearchQueryExpression + description: | + Allows you to apply a [sort filter](/../api/search-query-language#sort-filter). diff --git a/api-specs/api/types/search/SearchTimeRangeExpression.raml b/api-specs/api/types/search/SearchTimeRangeExpression.raml new file mode 100644 index 0000000000..4cda57fa86 --- /dev/null +++ b/api-specs/api/types/search/SearchTimeRangeExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchTimeRangeExpression +properties: + range: + type: SearchTimeRangeValue diff --git a/api-specs/api/types/search/SearchTimeRangeValue.raml b/api-specs/api/types/search/SearchTimeRangeValue.raml new file mode 100644 index 0000000000..30663f3bcb --- /dev/null +++ b/api-specs/api/types/search/SearchTimeRangeValue.raml @@ -0,0 +1,14 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpressionValue +(beta): true +displayName: SearchTimeRangeValue +properties: + gte?: + type: time-only + gt?: + type: time-only + lte?: + type: time-only + lt?: + type: time-only diff --git a/api-specs/api/types/search/SearchWildCardExpression.raml b/api-specs/api/types/search/SearchWildCardExpression.raml new file mode 100644 index 0000000000..19242ab271 --- /dev/null +++ b/api-specs/api/types/search/SearchWildCardExpression.raml @@ -0,0 +1,8 @@ +#%RAML 1.0 DataType +(package): Search +type: SearchQueryExpression +(beta): true +displayName: SearchWildCardExpression +properties: + wildcard: + type: SearchAnyValue diff --git a/api-specs/api/types/shipping-method/CartClassificationTier.raml b/api-specs/api/types/shipping-method/CartClassificationTier.raml index c433b96f14..7219792db2 100644 --- a/api-specs/api/types/shipping-method/CartClassificationTier.raml +++ b/api-specs/api/types/shipping-method/CartClassificationTier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#cartclassification displayName: CartClassificationTier type: ShippingRatePriceTier description: | diff --git a/api-specs/api/types/shipping-method/CartScoreTier.raml b/api-specs/api/types/shipping-method/CartScoreTier.raml index 777359e7fc..76573c0cd1 100644 --- a/api-specs/api/types/shipping-method/CartScoreTier.raml +++ b/api-specs/api/types/shipping-method/CartScoreTier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#cartscore-with-fixed-price displayName: CartScoreTier type: ShippingRatePriceTier description: | @@ -15,7 +14,7 @@ properties: type: number format: int32 description: | - Abstract value for categorizing a Cart. The range starts at `0`. The default price covers `0`, tiers start at `1`. See [Using Tiered Shipping Rates](/../tutorials/shipping-rate) for details and examples. + Abstract value for categorizing a Cart. The range starts at `0`. The default price covers `0`, tiers start at `1`. See [Tiered shipping rates](/../api/shipping-delivery-overview#tiered-shipping-rates) for details and examples. price?: type: Money description: | diff --git a/api-specs/api/types/shipping-method/CartValueTier.raml b/api-specs/api/types/shipping-method/CartValueTier.raml index 8472ec32f2..47edca6456 100644 --- a/api-specs/api/types/shipping-method/CartValueTier.raml +++ b/api-specs/api/types/shipping-method/CartValueTier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#cartvalue displayName: CartValueTier type: ShippingRatePriceTier description: | diff --git a/api-specs/api/types/shipping-method/PriceFunction.raml b/api-specs/api/types/shipping-method/PriceFunction.raml index d103e091bb..7768d9ba86 100644 --- a/api-specs/api/types/shipping-method/PriceFunction.raml +++ b/api-specs/api/types/shipping-method/PriceFunction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#pricefunction displayName: PriceFunction description: properties: diff --git a/api-specs/api/types/shipping-method/ShippingMethod.raml b/api-specs/api/types/shipping-method/ShippingMethod.raml index 7de124a223..321a6be87b 100644 --- a/api-specs/api/types/shipping-method/ShippingMethod.raml +++ b/api-specs/api/types/shipping-method/ShippingMethod.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingmethod type: BaseResource displayName: ShippingMethod (updateType): ShippingMethodUpdate @@ -24,12 +23,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the ShippingMethod. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the ShippingMethod. key?: type: string description: User-defined unique identifier of the ShippingMethod. diff --git a/api-specs/api/types/shipping-method/ShippingMethodDraft.raml b/api-specs/api/types/shipping-method/ShippingMethodDraft.raml index 727356991c..9133f1337d 100644 --- a/api-specs/api/types/shipping-method/ShippingMethodDraft.raml +++ b/api-specs/api/types/shipping-method/ShippingMethodDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingmethoddraft type: object displayName: ShippingMethodDraft example: !include ../../examples/shipping-method-create.example.json diff --git a/api-specs/api/types/shipping-method/ShippingMethodReference.raml b/api-specs/api/types/shipping-method/ShippingMethodReference.raml index 626533d883..dceb07b98f 100644 --- a/api-specs/api/types/shipping-method/ShippingMethodReference.raml +++ b/api-specs/api/types/shipping-method/ShippingMethodReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingmethod type: Reference displayName: ShippingMethodReference discriminatorValue: shipping-method diff --git a/api-specs/api/types/shipping-method/ShippingMethodResourceIdentifier.raml b/api-specs/api/types/shipping-method/ShippingMethodResourceIdentifier.raml index 20d6619749..78670da6b3 100644 --- a/api-specs/api/types/shipping-method/ShippingMethodResourceIdentifier.raml +++ b/api-specs/api/types/shipping-method/ShippingMethodResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingmethod type: ResourceIdentifier displayName: ShippingMethodResourceIdentifier discriminatorValue: shipping-method diff --git a/api-specs/api/types/shipping-method/ShippingRate.raml b/api-specs/api/types/shipping-method/ShippingRate.raml index 026c4fe6f7..dfa4c8b9ad 100644 --- a/api-specs/api/types/shipping-method/ShippingRate.raml +++ b/api-specs/api/types/shipping-method/ShippingRate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingrate displayName: ShippingRate type: object properties: @@ -10,7 +9,7 @@ properties: freeAbove?: type: TypedMoney description: |- - Shipping is free if the sum of the (Custom) Line Item Prices reaches the specified value. + [Free shipping](/../api/shipping-delivery-overview#free-shipping) is applied if the sum of the (Custom) Line Item Prices reaches the specified value. isMatching?: type: boolean description: | diff --git a/api-specs/api/types/shipping-method/ShippingRateDraft.raml b/api-specs/api/types/shipping-method/ShippingRateDraft.raml index 63a3b10186..5500d658e6 100644 --- a/api-specs/api/types/shipping-method/ShippingRateDraft.raml +++ b/api-specs/api/types/shipping-method/ShippingRateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingratedraft displayName: ShippingRateDraft type: object properties: @@ -10,7 +9,7 @@ properties: freeAbove?: type: Money description: |- - Shipping is free if the sum of the (Custom) Line Item Prices reaches the specified value. + [Free shipping](/../api/shipping-delivery-overview#free-shipping) is applied if the sum of the (Custom) Line Item Prices reaches the specified value. tiers?: type: ShippingRatePriceTier[] description: Price tiers for the ShippingRate. diff --git a/api-specs/api/types/shipping-method/ShippingRatePriceTier.raml b/api-specs/api/types/shipping-method/ShippingRatePriceTier.raml index 61fb6c5cb4..f88a7c1f53 100644 --- a/api-specs/api/types/shipping-method/ShippingRatePriceTier.raml +++ b/api-specs/api/types/shipping-method/ShippingRatePriceTier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingrate displayName: ShippingRatePriceTier type: object discriminator: type diff --git a/api-specs/api/types/shipping-method/ShippingRateTierType.raml b/api-specs/api/types/shipping-method/ShippingRateTierType.raml index 29c9a835c3..c8a4cfba6b 100644 --- a/api-specs/api/types/shipping-method/ShippingRateTierType.raml +++ b/api-specs/api/types/shipping-method/ShippingRateTierType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#shippingratepricetier displayName: ShippingRateTierType type: string enum: diff --git a/api-specs/api/types/shipping-method/ZoneRate.raml b/api-specs/api/types/shipping-method/ZoneRate.raml index 42fdd64a6c..d08c2eff50 100644 --- a/api-specs/api/types/shipping-method/ZoneRate.raml +++ b/api-specs/api/types/shipping-method/ZoneRate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#zonerate displayName: ZoneRate description: | Defines shipping rates in different currencies for a specific [Zone](ctp:api:type:Zone). diff --git a/api-specs/api/types/shipping-method/ZoneRateDraft.raml b/api-specs/api/types/shipping-method/ZoneRateDraft.raml index af19ccdb75..76d6b88abe 100644 --- a/api-specs/api/types/shipping-method/ZoneRateDraft.raml +++ b/api-specs/api/types/shipping-method/ZoneRateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#zoneratedraft displayName: ZoneRateDraft type: object properties: diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodAddShippingRateAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodAddShippingRateAction.raml index 81bb8c0c0a..ae036f180c 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodAddShippingRateAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodAddShippingRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#add-shippingrate type: ShippingMethodUpdateAction displayName: ShippingMethodAddShippingRateAction discriminatorValue: addShippingRate diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodAddZoneAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodAddZoneAction.raml index e12bf260fd..9fd514ca3c 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodAddZoneAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodAddZoneAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#add-zone type: ShippingMethodUpdateAction displayName: ShippingMethodAddZoneAction discriminatorValue: addZone diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodChangeIsDefaultAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodChangeIsDefaultAction.raml index e6e651d98b..1e6de53593 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodChangeIsDefaultAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodChangeIsDefaultAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#change-isdefault type: ShippingMethodUpdateAction displayName: ShippingMethodChangeIsDefaultAction discriminatorValue: changeIsDefault diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodChangeNameAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodChangeNameAction.raml index c2de03fbc4..f7c249e708 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodChangeNameAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#change-name type: ShippingMethodUpdateAction displayName: ShippingMethodChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodChangeTaxCategoryAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodChangeTaxCategoryAction.raml index 57f46a5f02..1a7d7c3424 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodChangeTaxCategoryAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodChangeTaxCategoryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#change-taxcategory type: ShippingMethodUpdateAction displayName: ShippingMethodChangeTaxCategoryAction discriminatorValue: changeTaxCategory diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveShippingRateAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveShippingRateAction.raml index beed0b4aac..8d4b78d4be 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveShippingRateAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveShippingRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#remove-shippingrate type: ShippingMethodUpdateAction displayName: ShippingMethodRemoveShippingRateAction discriminatorValue: removeShippingRate diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveZoneAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveZoneAction.raml index e3bb560608..eb41bee6e8 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveZoneAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodRemoveZoneAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#remove-zone type: ShippingMethodUpdateAction displayName: ShippingMethodRemoveZoneAction discriminatorValue: removeZone diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomFieldAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomFieldAction.raml index a4f8140d52..685fcdd7fc 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomFieldAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-customfield type: ShippingMethodUpdateAction displayName: ShippingMethodSetCustomFieldAction description: | diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomTypeAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomTypeAction.raml index 6284bad094..857119d6a8 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomTypeAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-custom-type type: ShippingMethodUpdateAction displayName: ShippingMethodSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetDescriptionAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetDescriptionAction.raml index 6db261ceee..cb3ac0179a 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetDescriptionAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-description type: ShippingMethodUpdateAction displayName: ShippingMethodSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetKeyAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetKeyAction.raml index 590eb6955d..4cbdf08b4e 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetKeyAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-key type: ShippingMethodUpdateAction displayName: ShippingMethodSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedDescriptionAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedDescriptionAction.raml index a4f8a7805c..0062ef2f60 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedDescriptionAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-localized-description type: ShippingMethodUpdateAction displayName: ShippingMethodSetLocalizedDescriptionAction discriminatorValue: setLocalizedDescription diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedNameAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedNameAction.raml index 18bd5180cb..da14c82e7e 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedNameAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetLocalizedNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-localized-name type: ShippingMethodUpdateAction displayName: ShippingMethodSetLocalizedNameAction discriminatorValue: setLocalizedName diff --git a/api-specs/api/types/shipping-method/updates/ShippingMethodSetPredicateAction.raml b/api-specs/api/types/shipping-method/updates/ShippingMethodSetPredicateAction.raml index f7b006e1b8..24872792db 100644 --- a/api-specs/api/types/shipping-method/updates/ShippingMethodSetPredicateAction.raml +++ b/api-specs/api/types/shipping-method/updates/ShippingMethodSetPredicateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShippingMethod -(docs-uri): https://docs.commercetools.com/api/projects/shippingMethods#set-predicate type: ShippingMethodUpdateAction displayName: ShippingMethodSetPredicateAction discriminatorValue: setPredicate diff --git a/api-specs/api/types/shopping-list/ShoppingList.raml b/api-specs/api/types/shopping-list/ShoppingList.raml index 434ff6ff31..ffbe92bdfe 100644 --- a/api-specs/api/types/shopping-list/ShoppingList.raml +++ b/api-specs/api/types/shopping-list/ShoppingList.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#shoppinglist type: BaseResource displayName: ShoppingList (updateType): ShoppingListUpdate @@ -73,9 +72,9 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the ShoppingList. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the ShoppingList. diff --git a/api-specs/api/types/shopping-list/ShoppingListDraft.raml b/api-specs/api/types/shopping-list/ShoppingListDraft.raml index eaf14f70fc..5345d3947d 100644 --- a/api-specs/api/types/shopping-list/ShoppingListDraft.raml +++ b/api-specs/api/types/shopping-list/ShoppingListDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#shoppinglistdraft type: object displayName: ShoppingListDraft example: !include ../../examples/shopping-list-create.example.json diff --git a/api-specs/api/types/shopping-list/ShoppingListReference.raml b/api-specs/api/types/shopping-list/ShoppingListReference.raml index 0a9ccd6693..af3fa155ad 100644 --- a/api-specs/api/types/shopping-list/ShoppingListReference.raml +++ b/api-specs/api/types/shopping-list/ShoppingListReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/http-api-projects-shopping-lists.html#shopping-list type: Reference displayName: ShoppingListReference discriminatorValue: shopping-list diff --git a/api-specs/api/types/shopping-list/ShoppingListResourceIdentifier.raml b/api-specs/api/types/shopping-list/ShoppingListResourceIdentifier.raml index 67475e34c7..a5ed951adf 100644 --- a/api-specs/api/types/shopping-list/ShoppingListResourceIdentifier.raml +++ b/api-specs/api/types/shopping-list/ShoppingListResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/http-api-projects-shopping-lists.html#shopping-list type: ResourceIdentifier displayName: ShoppingListResourceIdentifier discriminatorValue: shopping-list diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListAddLineItemAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListAddLineItemAction.raml index 6e2875e059..46ce67dcd6 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListAddLineItemAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListAddLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#add-shoppinglistlineitem type: ShoppingListUpdateAction displayName: ShoppingListAddLineItemAction discriminatorValue: addLineItem diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListAddTextLineItemAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListAddTextLineItemAction.raml index d2e41f6379..cb16b55ac7 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListAddTextLineItemAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListAddTextLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#add-textlineitem type: ShoppingListUpdateAction displayName: ShoppingListAddTextLineItemAction discriminatorValue: addTextLineItem diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemQuantityAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemQuantityAction.raml index 6c2b93e888..aafa8c7382 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemQuantityAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#change-shoppinglistlineitem-quantity type: ShoppingListUpdateAction displayName: ShoppingListChangeLineItemQuantityAction discriminatorValue: changeLineItemQuantity diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemsOrderAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemsOrderAction.raml index 7c2ca1f294..9b547ccadb 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemsOrderAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListChangeLineItemsOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#change-shoppinglistlineitem-order type: ShoppingListUpdateAction displayName: ShoppingListChangeLineItemsOrderAction discriminatorValue: changeLineItemsOrder diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListChangeNameAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListChangeNameAction.raml index 0df3b57cb7..4cda0b68d1 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListChangeNameAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#change-name type: ShoppingListUpdateAction displayName: ShoppingListChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemNameAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemNameAction.raml index 9aad5f4cbd..47b6f02b7e 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemNameAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#change-textlineitem-name type: ShoppingListUpdateAction displayName: ShoppingListChangeTextLineItemNameAction discriminatorValue: changeTextLineItemName diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemQuantityAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemQuantityAction.raml index 565a96a36a..8a62cdd8f2 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemQuantityAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemQuantityAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#change-textlineitem-quantity type: ShoppingListUpdateAction displayName: ShoppingListChangeTextLineItemQuantityAction discriminatorValue: changeTextLineItemQuantity diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemsOrderAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemsOrderAction.raml index ca50d6d895..c30b138e24 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemsOrderAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListChangeTextLineItemsOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#change-textlineitems-order type: ShoppingListUpdateAction displayName: ShoppingListChangeTextLineItemsOrderAction discriminatorValue: changeTextLineItemsOrder diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListRemoveLineItemAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListRemoveLineItemAction.raml index a236065f91..c8551df383 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListRemoveLineItemAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListRemoveLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#remove-shoppinglistlineitem type: ShoppingListUpdateAction displayName: ShoppingListRemoveLineItemAction discriminatorValue: removeLineItem diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListRemoveTextLineItemAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListRemoveTextLineItemAction.raml index ca73d5b3b9..b275a2d2e0 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListRemoveTextLineItemAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListRemoveTextLineItemAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#remove-textlineitem type: ShoppingListUpdateAction displayName: ShoppingListRemoveTextLineItemAction discriminatorValue: removeTextLineItem diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetAnonymousIdAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetAnonymousIdAction.raml index ae25d58646..a9be254ddb 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetAnonymousIdAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetAnonymousIdAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-anonymousid type: ShoppingListUpdateAction displayName: ShoppingListSetAnonymousIdAction discriminatorValue: setAnonymousId diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomFieldAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomFieldAction.raml index 43195ac5f1..7027866e80 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomFieldAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-customfield type: ShoppingListUpdateAction displayName: ShoppingListSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomTypeAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomTypeAction.raml index 1355f9f03c..5ecb907e7f 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomTypeAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-custom-type type: ShoppingListUpdateAction displayName: ShoppingListSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomerAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomerAction.raml index 31060121ff..3e33f87e18 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomerAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetCustomerAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-customer type: ShoppingListUpdateAction displayName: ShoppingListSetCustomerAction discriminatorValue: setCustomer diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetDeleteDaysAfterLastModificationAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetDeleteDaysAfterLastModificationAction.raml index f74d508862..77f9491254 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetDeleteDaysAfterLastModificationAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetDeleteDaysAfterLastModificationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-deletedaysafterlastmodification type: ShoppingListUpdateAction displayName: ShoppingListSetDeleteDaysAfterLastModificationAction discriminatorValue: setDeleteDaysAfterLastModification diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetDescriptionAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetDescriptionAction.raml index b5a0244e66..e9aff345a6 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetDescriptionAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-description type: ShoppingListUpdateAction displayName: ShoppingListSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetKeyAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetKeyAction.raml index d2340e4061..3f073b15ab 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetKeyAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-key type: ShoppingListUpdateAction displayName: ShoppingListSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomFieldAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomFieldAction.raml index 6ce8f20fab..e2b11eb581 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomFieldAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-shoppinglistlineitem-customfield type: ShoppingListUpdateAction displayName: ShoppingListSetLineItemCustomFieldAction discriminatorValue: setLineItemCustomField diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomTypeAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomTypeAction.raml index d3aa656e2c..6d52ec9a4e 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomTypeAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-shoppinglistlineitem-custom-type type: ShoppingListUpdateAction displayName: ShoppingListSetLineItemCustomTypeAction discriminatorValue: setLineItemCustomType diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetSlugAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetSlugAction.raml index f6ac79e514..604fc7ee17 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetSlugAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetSlugAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-slug type: ShoppingListUpdateAction displayName: ShoppingListSetSlugAction discriminatorValue: setSlug diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetStoreAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetStoreAction.raml index 6893ae5ffc..d903dc6b53 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetStoreAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetStoreAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-store type: ShoppingListUpdateAction displayName: ShoppingListSetStoreAction discriminatorValue: setStore diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomFieldAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomFieldAction.raml index 5090075f93..f1683ca641 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomFieldAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-textlineitem-customfield type: ShoppingListUpdateAction displayName: ShoppingListSetTextLineItemCustomFieldAction discriminatorValue: setTextLineItemCustomField diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomTypeAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomTypeAction.raml index facc33383b..2f7fd52adb 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomTypeAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-textlineitem-custom-type type: ShoppingListUpdateAction displayName: ShoppingListSetTextLineItemCustomTypeAction discriminatorValue: setTextLineItemCustomType diff --git a/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemDescriptionAction.raml b/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemDescriptionAction.raml index 7488d3208c..4bfed88b2b 100644 --- a/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemDescriptionAction.raml +++ b/api-specs/api/types/shopping-list/updates/ShoppingListSetTextLineItemDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): ShoppingList -(docs-uri): https://docs.commercetools.com/api/projects/shoppingLists#set-textlineitem-description type: ShoppingListUpdateAction displayName: ShoppingListSetTextLineItemDescriptionAction discriminatorValue: setTextLineItemDescription diff --git a/api-specs/api/types/staged-quote/StagedQuote.raml b/api-specs/api/types/staged-quote/StagedQuote.raml index fe3d7aa02c..09cc999d4b 100644 --- a/api-specs/api/types/staged-quote/StagedQuote.raml +++ b/api-specs/api/types/staged-quote/StagedQuote.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes#stagedquote type: BaseResource displayName: StagedQuote (updateType): StagedQuoteUpdate @@ -30,12 +29,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the StagedQuote. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the StagedQuote. stagedQuoteState: type: StagedQuoteState customer?: diff --git a/api-specs/api/types/staged-quote/StagedQuoteDraft.raml b/api-specs/api/types/staged-quote/StagedQuoteDraft.raml index c5e0a6eed1..79781581f5 100644 --- a/api-specs/api/types/staged-quote/StagedQuoteDraft.raml +++ b/api-specs/api/types/staged-quote/StagedQuoteDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes#stagedquotedraft type: object displayName: StagedQuoteDraft properties: diff --git a/api-specs/api/types/staged-quote/StagedQuoteReference.raml b/api-specs/api/types/staged-quote/StagedQuoteReference.raml index e9ecf56ff5..d0dd9d1eba 100644 --- a/api-specs/api/types/staged-quote/StagedQuoteReference.raml +++ b/api-specs/api/types/staged-quote/StagedQuoteReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#stagedquote type: Reference displayName: StagedQuoteReference discriminatorValue: staged-quote diff --git a/api-specs/api/types/staged-quote/StagedQuoteResourceIdentifier.raml b/api-specs/api/types/staged-quote/StagedQuoteResourceIdentifier.raml index 29f10152a0..adadb728ec 100644 --- a/api-specs/api/types/staged-quote/StagedQuoteResourceIdentifier.raml +++ b/api-specs/api/types/staged-quote/StagedQuoteResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): type: ResourceIdentifier displayName: StagedQuoteResourceIdentifier discriminatorValue: staged-quote diff --git a/api-specs/api/types/staged-quote/StagedQuoteState.raml b/api-specs/api/types/staged-quote/StagedQuoteState.raml index 509c619d49..ff139a4f10 100644 --- a/api-specs/api/types/staged-quote/StagedQuoteState.raml +++ b/api-specs/api/types/staged-quote/StagedQuoteState.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#stagedquotestate displayName: StagedQuoteState type: string description: | diff --git a/api-specs/api/types/staged-quote/updates/StagedQuoteChangeStagedQuoteStateAction.raml b/api-specs/api/types/staged-quote/updates/StagedQuoteChangeStagedQuoteStateAction.raml index f3925d8648..a3424c143c 100644 --- a/api-specs/api/types/staged-quote/updates/StagedQuoteChangeStagedQuoteStateAction.raml +++ b/api-specs/api/types/staged-quote/updates/StagedQuoteChangeStagedQuoteStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#change-staged-quote-state type: StagedQuoteUpdateAction displayName: StagedQuoteChangeStagedQuoteStateAction discriminatorValue: changeStagedQuoteState diff --git a/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomFieldAction.raml b/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomFieldAction.raml index 9296cfc6bf..71d5ba4b40 100644 --- a/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomFieldAction.raml +++ b/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#set-custom-field type: StagedQuoteUpdateAction displayName: StagedQuoteSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomTypeAction.raml b/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomTypeAction.raml index ac264da042..3b36599223 100644 --- a/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomTypeAction.raml +++ b/api-specs/api/types/staged-quote/updates/StagedQuoteSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#set-custom-type type: StagedQuoteUpdateAction displayName: StagedQuoteSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/staged-quote/updates/StagedQuoteSetSellerCommentAction.raml b/api-specs/api/types/staged-quote/updates/StagedQuoteSetSellerCommentAction.raml index 26d9ba33a5..1dc71e03ef 100644 --- a/api-specs/api/types/staged-quote/updates/StagedQuoteSetSellerCommentAction.raml +++ b/api-specs/api/types/staged-quote/updates/StagedQuoteSetSellerCommentAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#set-seller-comment type: StagedQuoteUpdateAction displayName: StagedQuoteSetSellerCommentAction discriminatorValue: setSellerComment diff --git a/api-specs/api/types/staged-quote/updates/StagedQuoteSetValidToAction.raml b/api-specs/api/types/staged-quote/updates/StagedQuoteSetValidToAction.raml index 7dab046237..7e6d6df006 100644 --- a/api-specs/api/types/staged-quote/updates/StagedQuoteSetValidToAction.raml +++ b/api-specs/api/types/staged-quote/updates/StagedQuoteSetValidToAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/http-api-projects-staged-quotes.html#set-valid-to type: StagedQuoteUpdateAction displayName: StagedQuoteSetValidToAction discriminatorValue: setValidTo diff --git a/api-specs/api/types/staged-quote/updates/StagedQuoteTransitionStateAction.raml b/api-specs/api/types/staged-quote/updates/StagedQuoteTransitionStateAction.raml index d6776e264e..6f188ecafd 100644 --- a/api-specs/api/types/staged-quote/updates/StagedQuoteTransitionStateAction.raml +++ b/api-specs/api/types/staged-quote/updates/StagedQuoteTransitionStateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StagedQuote -(docs-uri): https://docs.commercetools.com/api/projects/quotes#transitionstate type: StagedQuoteUpdateAction displayName: StagedQuoteTransitionStateAction discriminatorValue: transitionState diff --git a/api-specs/api/types/standalone-price/StagedPriceDraft.raml b/api-specs/api/types/standalone-price/StagedPriceDraft.raml index 867ab363d9..ddce530820 100644 --- a/api-specs/api/types/standalone-price/StagedPriceDraft.raml +++ b/api-specs/api/types/standalone-price/StagedPriceDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#stagedpricedraft type: object displayName: StagedPriceDraft properties: diff --git a/api-specs/api/types/standalone-price/StagedStandalonePrice.raml b/api-specs/api/types/standalone-price/StagedStandalonePrice.raml index 4eeeca787c..87054ce3e4 100644 --- a/api-specs/api/types/standalone-price/StagedStandalonePrice.raml +++ b/api-specs/api/types/standalone-price/StagedStandalonePrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#stagedstandaloneprice type: object displayName: StagedStandalonePrice description: | diff --git a/api-specs/api/types/standalone-price/StandalonePrice.raml b/api-specs/api/types/standalone-price/StandalonePrice.raml index f20328ec3b..5e3c255d48 100644 --- a/api-specs/api/types/standalone-price/StandalonePrice.raml +++ b/api-specs/api/types/standalone-price/StandalonePrice.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#standaloneprices type: BaseResource displayName: StandalonePrice (updateType): StandalonePriceUpdate @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the StandalonePrice. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the StandalonePrice. key?: type: string description: |- @@ -72,6 +71,8 @@ properties: type: PriceTier[] description: | Price tiers if any are defined. + + If `discounted` is present, the tiered Price is ignored for a Product Variant. discounted?: type: DiscountedPrice description: | diff --git a/api-specs/api/types/standalone-price/StandalonePriceDraft.raml b/api-specs/api/types/standalone-price/StandalonePriceDraft.raml index 76ac20c2ec..d97a592b9e 100644 --- a/api-specs/api/types/standalone-price/StandalonePriceDraft.raml +++ b/api-specs/api/types/standalone-price/StandalonePriceDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#standalonepricedraft displayName: StandalonePriceDraft type: object description: |- @@ -48,6 +47,8 @@ properties: type: PriceTierDraft[] description: | Sets price tiers. + + If `discounted` is set, the tiered Price is ignored for a Product Variant. discounted?: type: DiscountedPriceDraft description: | diff --git a/api-specs/api/types/standalone-price/StandalonePriceReference.raml b/api-specs/api/types/standalone-price/StandalonePriceReference.raml index 20d39e4aa2..753e5f9c45 100644 --- a/api-specs/api/types/standalone-price/StandalonePriceReference.raml +++ b/api-specs/api/types/standalone-price/StandalonePriceReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#standaloneprices type: Reference displayName: StandalonePriceReference discriminatorValue: standalone-price description: | - [Reference](/../api/types#reference) to a [StandalonePrice](ctp:api:type:StandalonePrice). + [Reference](ctp:api:type:Reference) to a [StandalonePrice](ctp:api:type:StandalonePrice). properties: obj?: type: StandalonePrice diff --git a/api-specs/api/types/standalone-price/StandalonePriceResourceIdentifier.raml b/api-specs/api/types/standalone-price/StandalonePriceResourceIdentifier.raml index 54c2aa26a5..4b82d9d1ab 100644 --- a/api-specs/api/types/standalone-price/StandalonePriceResourceIdentifier.raml +++ b/api-specs/api/types/standalone-price/StandalonePriceResourceIdentifier.raml @@ -1,8 +1,7 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#standaloneprices type: ResourceIdentifier displayName: StandalonePriceResourceIdentifier discriminatorValue: standalone-price description: | - [ResourceIdentifier](/../api/types#resourceidentifier) to a [StandalonePrice](ctp:api:type:StandalonePrice). + [ResourceIdentifier](ctp:api:type:ResourceIdentifier) to a [StandalonePrice](ctp:api:type:StandalonePrice). diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceAddPriceTierAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceAddPriceTierAction.raml index 5740e692f2..0fea773253 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceAddPriceTierAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceAddPriceTierAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#add-price-tier type: StandalonePriceUpdateAction displayName: StandalonePriceAddPriceTierAction discriminatorValue: addPriceTier diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceApplyStagedChangesAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceApplyStagedChangesAction.raml index e529ebe3bc..9aebf509bb 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceApplyStagedChangesAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceApplyStagedChangesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#apply-staged-changes type: StandalonePriceUpdateAction displayName: StandalonePriceApplyStagedChangesAction discriminatorValue: applyStagedChanges diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceChangeActiveAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceChangeActiveAction.raml index 8f91e800ae..144f862cea 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceChangeActiveAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceChangeActiveAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#change-active type: StandalonePriceUpdateAction displayName: StandalonePriceChangeActiveAction discriminatorValue: changeActive diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceChangeValueAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceChangeValueAction.raml index 2ba037a33f..afabc539ea 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceChangeValueAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceChangeValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#change-value type: StandalonePriceUpdateAction displayName: StandalonePriceChangeValueAction discriminatorValue: changeValue diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceRemovePriceTierAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceRemovePriceTierAction.raml index 148ae2586b..541b736e79 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceRemovePriceTierAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceRemovePriceTierAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#remove-price-tier type: StandalonePriceUpdateAction displayName: StandalonePriceRemovePriceTierAction discriminatorValue: removePriceTier diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceRemoveStagedChangesAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceRemoveStagedChangesAction.raml index ebef79b5e2..b1997807fa 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceRemoveStagedChangesAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceRemoveStagedChangesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#remove-staged-changes type: StandalonePriceUpdateAction displayName: StandalonePriceRemoveStagedChangesAction discriminatorValue: removeStagedChanges diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomFieldAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomFieldAction.raml index 445206eaab..eabb013cda 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomFieldAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#set-custom-field type: StandalonePriceUpdateAction displayName: StandalonePriceSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomTypeAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomTypeAction.raml index 8847a410ce..5ef53a0904 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomTypeAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#set-custom-type type: StandalonePriceUpdateAction displayName: StandalonePriceSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetDiscountedPriceAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetDiscountedPriceAction.raml index 5cd351a83c..d02e03b260 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetDiscountedPriceAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetDiscountedPriceAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#set-discounted-price type: StandalonePriceUpdateAction displayName: StandalonePriceSetDiscountedPriceAction discriminatorValue: setDiscountedPrice diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetKeyAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetKeyAction.raml index 061e8caff7..e0feb9e88a 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetKeyAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#set-key type: StandalonePriceUpdateAction displayName: StandalonePriceSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetPriceTiersAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetPriceTiersAction.raml index 005751ff30..7699b0b89d 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetPriceTiersAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetPriceTiersAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/http-api-projects-standalone-prices#set-price-tiers type: StandalonePriceUpdateAction displayName: StandalonePriceSetPriceTiersAction discriminatorValue: setPriceTiers diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAction.raml index ffc586f282..cd32717d3a 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#set-valid-from type: StandalonePriceUpdateAction displayName: StandalonePriceSetValidFromAction discriminatorValue: setValidFrom diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAndUntilAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAndUntilAction.raml index 8433bc5a17..dceb9221ee 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAndUntilAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidFromAndUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#set-valid-from-and-until type: StandalonePriceUpdateAction displayName: StandalonePriceSetValidFromAndUntilAction discriminatorValue: setValidFromAndUntil diff --git a/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidUntilAction.raml b/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidUntilAction.raml index d2baa48d68..4d9dec7437 100644 --- a/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidUntilAction.raml +++ b/api-specs/api/types/standalone-price/updates/StandalonePriceSetValidUntilAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StandalonePrice -(docs-uri): https://docs.commercetools.com/api/projects/standalone-prices#set-valid-until type: StandalonePriceUpdateAction displayName: StandalonePriceSetValidUntilAction discriminatorValue: setValidUntil diff --git a/api-specs/api/types/state/State.raml b/api-specs/api/types/state/State.raml index cc04950700..1870e454b9 100644 --- a/api-specs/api/types/state/State.raml +++ b/api-specs/api/types/state/State.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#state type: BaseResource displayName: State (updateType): StateUpdate @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the State. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the State. key: type: string description: | diff --git a/api-specs/api/types/state/StateDraft.raml b/api-specs/api/types/state/StateDraft.raml index 278c2027bc..d1e6bc77c7 100644 --- a/api-specs/api/types/state/StateDraft.raml +++ b/api-specs/api/types/state/StateDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#statedraft type: object displayName: StateDraft properties: diff --git a/api-specs/api/types/state/StateReference.raml b/api-specs/api/types/state/StateReference.raml index 98658b36e0..a155c58efa 100644 --- a/api-specs/api/types/state/StateReference.raml +++ b/api-specs/api/types/state/StateReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#statereference type: Reference displayName: StateReference discriminatorValue: state diff --git a/api-specs/api/types/state/StateResourceIdentifier.raml b/api-specs/api/types/state/StateResourceIdentifier.raml index 69a845fd69..00f396a36f 100644 --- a/api-specs/api/types/state/StateResourceIdentifier.raml +++ b/api-specs/api/types/state/StateResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#stateresourceidentifier type: ResourceIdentifier displayName: StateResourceIdentifier discriminatorValue: state diff --git a/api-specs/api/types/state/StateRoleEnum.raml b/api-specs/api/types/state/StateRoleEnum.raml index 5793b97233..e3954cba71 100644 --- a/api-specs/api/types/state/StateRoleEnum.raml +++ b/api-specs/api/types/state/StateRoleEnum.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#stateroleenum type: string description: | For some resource types, a State can fulfill the following predefined roles: diff --git a/api-specs/api/types/state/updates/StateAddRolesAction.raml b/api-specs/api/types/state/updates/StateAddRolesAction.raml index 02b152439c..892c36ac6b 100644 --- a/api-specs/api/types/state/updates/StateAddRolesAction.raml +++ b/api-specs/api/types/state/updates/StateAddRolesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#add-state-roles type: StateUpdateAction displayName: StateAddRolesAction discriminatorValue: addRoles diff --git a/api-specs/api/types/state/updates/StateChangeInitialAction.raml b/api-specs/api/types/state/updates/StateChangeInitialAction.raml index 2de50ad4c0..464347c453 100644 --- a/api-specs/api/types/state/updates/StateChangeInitialAction.raml +++ b/api-specs/api/types/state/updates/StateChangeInitialAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#change-initial-state type: StateUpdateAction displayName: StateChangeInitialAction discriminatorValue: changeInitial diff --git a/api-specs/api/types/state/updates/StateChangeKeyAction.raml b/api-specs/api/types/state/updates/StateChangeKeyAction.raml index 004535f51a..2043ab9ef9 100644 --- a/api-specs/api/types/state/updates/StateChangeKeyAction.raml +++ b/api-specs/api/types/state/updates/StateChangeKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#change-state-key type: StateUpdateAction displayName: StateChangeKeyAction discriminatorValue: changeKey diff --git a/api-specs/api/types/state/updates/StateChangeTypeAction.raml b/api-specs/api/types/state/updates/StateChangeTypeAction.raml index 2bb716f45c..0841897ae7 100644 --- a/api-specs/api/types/state/updates/StateChangeTypeAction.raml +++ b/api-specs/api/types/state/updates/StateChangeTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#change-state-type type: StateUpdateAction displayName: StateChangeTypeAction discriminatorValue: changeType diff --git a/api-specs/api/types/state/updates/StateRemoveRolesAction.raml b/api-specs/api/types/state/updates/StateRemoveRolesAction.raml index 48b9d3a5ed..2665cabb85 100644 --- a/api-specs/api/types/state/updates/StateRemoveRolesAction.raml +++ b/api-specs/api/types/state/updates/StateRemoveRolesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#remove-state-roles type: StateUpdateAction displayName: StateRemoveRolesAction discriminatorValue: removeRoles diff --git a/api-specs/api/types/state/updates/StateSetDescriptionAction.raml b/api-specs/api/types/state/updates/StateSetDescriptionAction.raml index 0c11e3cb43..59a3e39d48 100644 --- a/api-specs/api/types/state/updates/StateSetDescriptionAction.raml +++ b/api-specs/api/types/state/updates/StateSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#set-state-description type: StateUpdateAction displayName: StateSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/state/updates/StateSetNameAction.raml b/api-specs/api/types/state/updates/StateSetNameAction.raml index a9532589ad..edbb9db35e 100644 --- a/api-specs/api/types/state/updates/StateSetNameAction.raml +++ b/api-specs/api/types/state/updates/StateSetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#set-state-name type: StateUpdateAction displayName: StateSetNameAction discriminatorValue: setName diff --git a/api-specs/api/types/state/updates/StateSetRolesAction.raml b/api-specs/api/types/state/updates/StateSetRolesAction.raml index 7086456db6..e528e0c341 100644 --- a/api-specs/api/types/state/updates/StateSetRolesAction.raml +++ b/api-specs/api/types/state/updates/StateSetRolesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#set-state-roles type: StateUpdateAction displayName: StateSetRolesAction discriminatorValue: setRoles diff --git a/api-specs/api/types/state/updates/StateSetTransitionsAction.raml b/api-specs/api/types/state/updates/StateSetTransitionsAction.raml index a1a7cff411..cf90ffe77f 100644 --- a/api-specs/api/types/state/updates/StateSetTransitionsAction.raml +++ b/api-specs/api/types/state/updates/StateSetTransitionsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): State -(docs-uri): https://docs.commercetools.com/api/projects/states#set-transitions type: StateUpdateAction displayName: StateSetTransitionsAction discriminatorValue: setTransitions diff --git a/api-specs/api/types/store/ProductSelectionSetting.raml b/api-specs/api/types/store/ProductSelectionSetting.raml index 331677d9f4..47b079a207 100644 --- a/api-specs/api/types/store/ProductSelectionSetting.raml +++ b/api-specs/api/types/store/ProductSelectionSetting.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#productselectionsetting type: object displayName: ProductSelectionSetting properties: diff --git a/api-specs/api/types/store/ProductSelectionSettingDraft.raml b/api-specs/api/types/store/ProductSelectionSettingDraft.raml index 44e8647c9c..4d447b3b51 100644 --- a/api-specs/api/types/store/ProductSelectionSettingDraft.raml +++ b/api-specs/api/types/store/ProductSelectionSettingDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#productselectionsettingdraft type: object displayName: ProductSelectionSettingDraft properties: diff --git a/api-specs/api/types/store/Store.raml b/api-specs/api/types/store/Store.raml index 1fd50bc0be..29edd9aa0d 100644 --- a/api-specs/api/types/store/Store.raml +++ b/api-specs/api/types/store/Store.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#store type: BaseResource displayName: Store (updateType): StoreUpdate @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Store. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Store. key: type: string description: | diff --git a/api-specs/api/types/store/StoreCountry.raml b/api-specs/api/types/store/StoreCountry.raml index 65a9f909fe..15c6b24f90 100644 --- a/api-specs/api/types/store/StoreCountry.raml +++ b/api-specs/api/types/store/StoreCountry.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): StoreCountry -(docs-uri): https://docs.commercetools.com/api/projects/stores#storecountry type: object displayName: StoreCountry properties: diff --git a/api-specs/api/types/store/StoreDraft.raml b/api-specs/api/types/store/StoreDraft.raml index 825e4380a9..3c93cf69f5 100644 --- a/api-specs/api/types/store/StoreDraft.raml +++ b/api-specs/api/types/store/StoreDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#storedraft displayName: StoreDraft type: object properties: diff --git a/api-specs/api/types/store/StoreKeyReference.raml b/api-specs/api/types/store/StoreKeyReference.raml index 2f10cc9b2c..905e3ffd04 100644 --- a/api-specs/api/types/store/StoreKeyReference.raml +++ b/api-specs/api/types/store/StoreKeyReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#storekeyreference type: KeyReference displayName: StoreKeyReference discriminatorValue: store description: | - [Reference](/../api/types#reference) to a [Store](ctp:api:type:Store) by its key. + [Reference](ctp:api:type:Reference) to a [Store](ctp:api:type:Store) by its key. properties: key: type: string diff --git a/api-specs/api/types/store/StoreReference.raml b/api-specs/api/types/store/StoreReference.raml index 155ab657ad..a2c4308a46 100644 --- a/api-specs/api/types/store/StoreReference.raml +++ b/api-specs/api/types/store/StoreReference.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#storereference type: Reference displayName: StoreReference discriminatorValue: store description: | - [Reference](/../api/types#reference) to a [Store](ctp:api:type:Store). + [Reference](ctp:api:type:Reference) to a [Store](ctp:api:type:Store). properties: obj?: type: Store diff --git a/api-specs/api/types/store/StoreResourceIdentifier.raml b/api-specs/api/types/store/StoreResourceIdentifier.raml index 332d6b308f..f471cc3c9a 100644 --- a/api-specs/api/types/store/StoreResourceIdentifier.raml +++ b/api-specs/api/types/store/StoreResourceIdentifier.raml @@ -1,11 +1,10 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#storeresourceidentifier type: ResourceIdentifier displayName: StoreResourceIdentifier discriminatorValue: store description: | - [ResourceIdentifier](/../api/types#resourceidentifier) to a [Store](ctp:api:type:Store). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/../api/errors#invalidjsoninput) error is returned. + [ResourceIdentifier](ctp:api:type:ResourceIdentifier) to a [Store](ctp:api:type:Store). Either `id` or `key` is required. If both are set, an [InvalidJsonInput](/../api/errors#invalidjsoninput) error is returned. properties: id?: type: string diff --git a/api-specs/api/types/store/updates/StoreAddCountryAction.raml b/api-specs/api/types/store/updates/StoreAddCountryAction.raml index 584f1f1f8a..2e2d743572 100644 --- a/api-specs/api/types/store/updates/StoreAddCountryAction.raml +++ b/api-specs/api/types/store/updates/StoreAddCountryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#add-country type: StoreUpdateAction displayName: StoreAddCountryAction discriminatorValue: addCountry diff --git a/api-specs/api/types/store/updates/StoreAddDistributionChannelAction.raml b/api-specs/api/types/store/updates/StoreAddDistributionChannelAction.raml index c49d5ba7e1..51811c3add 100644 --- a/api-specs/api/types/store/updates/StoreAddDistributionChannelAction.raml +++ b/api-specs/api/types/store/updates/StoreAddDistributionChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#add-distribution-channel type: StoreUpdateAction displayName: StoreAddDistributionChannelAction discriminatorValue: addDistributionChannel diff --git a/api-specs/api/types/store/updates/StoreAddProductSelectionAction.raml b/api-specs/api/types/store/updates/StoreAddProductSelectionAction.raml index 52b29cb2e4..fcccd9bf0b 100644 --- a/api-specs/api/types/store/updates/StoreAddProductSelectionAction.raml +++ b/api-specs/api/types/store/updates/StoreAddProductSelectionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#add-product-selection type: StoreUpdateAction displayName: StoreAddProductSelectionAction discriminatorValue: addProductSelection diff --git a/api-specs/api/types/store/updates/StoreAddSupplyChannelAction.raml b/api-specs/api/types/store/updates/StoreAddSupplyChannelAction.raml index c8b528aad8..021d530495 100644 --- a/api-specs/api/types/store/updates/StoreAddSupplyChannelAction.raml +++ b/api-specs/api/types/store/updates/StoreAddSupplyChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#add-supply-channel type: StoreUpdateAction displayName: StoreAddSupplyChannelAction discriminatorValue: addSupplyChannel diff --git a/api-specs/api/types/store/updates/StoreChangeProductSelectionAction.raml b/api-specs/api/types/store/updates/StoreChangeProductSelectionAction.raml index 70fce3aaa9..506acddce9 100644 --- a/api-specs/api/types/store/updates/StoreChangeProductSelectionAction.raml +++ b/api-specs/api/types/store/updates/StoreChangeProductSelectionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#change-product-selection-active type: StoreUpdateAction displayName: StoreChangeProductSelectionAction discriminatorValue: changeProductSelectionActive diff --git a/api-specs/api/types/store/updates/StoreRemoveCountryAction.raml b/api-specs/api/types/store/updates/StoreRemoveCountryAction.raml index db4e8266a8..3776c740fd 100644 --- a/api-specs/api/types/store/updates/StoreRemoveCountryAction.raml +++ b/api-specs/api/types/store/updates/StoreRemoveCountryAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#remove-country type: StoreUpdateAction displayName: StoreRemoveCountryAction discriminatorValue: removeCountry diff --git a/api-specs/api/types/store/updates/StoreRemoveDistributionChannelAction.raml b/api-specs/api/types/store/updates/StoreRemoveDistributionChannelAction.raml index 8f8609cbff..d5a6587ccc 100644 --- a/api-specs/api/types/store/updates/StoreRemoveDistributionChannelAction.raml +++ b/api-specs/api/types/store/updates/StoreRemoveDistributionChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#remove-distribution-channel type: StoreUpdateAction displayName: StoreRemoveDistributionChannelAction discriminatorValue: removeDistributionChannel diff --git a/api-specs/api/types/store/updates/StoreRemoveProductSelectionAction.raml b/api-specs/api/types/store/updates/StoreRemoveProductSelectionAction.raml index dba9f56de5..d5ac00d44b 100644 --- a/api-specs/api/types/store/updates/StoreRemoveProductSelectionAction.raml +++ b/api-specs/api/types/store/updates/StoreRemoveProductSelectionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#remove-product-selection type: StoreUpdateAction displayName: StoreRemoveProductSelectionAction discriminatorValue: removeProductSelection diff --git a/api-specs/api/types/store/updates/StoreRemoveSupplyChannelAction.raml b/api-specs/api/types/store/updates/StoreRemoveSupplyChannelAction.raml index 783e3afcec..04df085fdf 100644 --- a/api-specs/api/types/store/updates/StoreRemoveSupplyChannelAction.raml +++ b/api-specs/api/types/store/updates/StoreRemoveSupplyChannelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#remove-supply-channel type: StoreUpdateAction displayName: StoreRemoveSupplyChannelAction discriminatorValue: removeSupplyChannel diff --git a/api-specs/api/types/store/updates/StoreSetCountriesAction.raml b/api-specs/api/types/store/updates/StoreSetCountriesAction.raml index 26824494f6..a6bf454822 100644 --- a/api-specs/api/types/store/updates/StoreSetCountriesAction.raml +++ b/api-specs/api/types/store/updates/StoreSetCountriesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-countries type: StoreUpdateAction displayName: StoreSetCountriesAction discriminatorValue: setCountries diff --git a/api-specs/api/types/store/updates/StoreSetCustomFieldAction.raml b/api-specs/api/types/store/updates/StoreSetCustomFieldAction.raml index 257e5328ac..cad4230afc 100644 --- a/api-specs/api/types/store/updates/StoreSetCustomFieldAction.raml +++ b/api-specs/api/types/store/updates/StoreSetCustomFieldAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-custom-field type: StoreUpdateAction displayName: StoreSetCustomFieldAction discriminatorValue: setCustomField diff --git a/api-specs/api/types/store/updates/StoreSetCustomTypeAction.raml b/api-specs/api/types/store/updates/StoreSetCustomTypeAction.raml index bbef169211..b045f8292f 100644 --- a/api-specs/api/types/store/updates/StoreSetCustomTypeAction.raml +++ b/api-specs/api/types/store/updates/StoreSetCustomTypeAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-custom-type type: StoreUpdateAction displayName: StoreSetCustomTypeAction discriminatorValue: setCustomType diff --git a/api-specs/api/types/store/updates/StoreSetDistributionChannelsAction.raml b/api-specs/api/types/store/updates/StoreSetDistributionChannelsAction.raml index 54c971711d..b770f02d40 100644 --- a/api-specs/api/types/store/updates/StoreSetDistributionChannelsAction.raml +++ b/api-specs/api/types/store/updates/StoreSetDistributionChannelsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-distribution-channels type: StoreUpdateAction displayName: StoreSetDistributionChannelsAction discriminatorValue: setDistributionChannels diff --git a/api-specs/api/types/store/updates/StoreSetLanguagesAction.raml b/api-specs/api/types/store/updates/StoreSetLanguagesAction.raml index 04ae85539a..cfe74e6ea5 100644 --- a/api-specs/api/types/store/updates/StoreSetLanguagesAction.raml +++ b/api-specs/api/types/store/updates/StoreSetLanguagesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-languages type: StoreUpdateAction displayName: StoreSetLanguagesAction discriminatorValue: setLanguages diff --git a/api-specs/api/types/store/updates/StoreSetNameAction.raml b/api-specs/api/types/store/updates/StoreSetNameAction.raml index 62c8f66ba0..538864376f 100644 --- a/api-specs/api/types/store/updates/StoreSetNameAction.raml +++ b/api-specs/api/types/store/updates/StoreSetNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-name type: StoreUpdateAction displayName: StoreSetNameAction discriminatorValue: setName diff --git a/api-specs/api/types/store/updates/StoreSetProductSelectionsAction.raml b/api-specs/api/types/store/updates/StoreSetProductSelectionsAction.raml index cb47e721b2..d59b412ec7 100644 --- a/api-specs/api/types/store/updates/StoreSetProductSelectionsAction.raml +++ b/api-specs/api/types/store/updates/StoreSetProductSelectionsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-product-selections type: StoreUpdateAction displayName: StoreSetProductSelectionsAction discriminatorValue: setProductSelections diff --git a/api-specs/api/types/store/updates/StoreSetSupplyChannelsAction.raml b/api-specs/api/types/store/updates/StoreSetSupplyChannelsAction.raml index ced9d3c6e7..81f33b9945 100644 --- a/api-specs/api/types/store/updates/StoreSetSupplyChannelsAction.raml +++ b/api-specs/api/types/store/updates/StoreSetSupplyChannelsAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Store -(docs-uri): https://docs.commercetools.com/api/projects/stores#set-supply-channels type: StoreUpdateAction displayName: StoreSetSupplyChannelsAction discriminatorValue: setSupplyChannels diff --git a/api-specs/api/types/subscription/CloudEventsFormat.raml b/api-specs/api/types/subscription/CloudEventsFormat.raml index 0d75d00950..d7bfe709a8 100644 --- a/api-specs/api/types/subscription/CloudEventsFormat.raml +++ b/api-specs/api/types/subscription/CloudEventsFormat.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#cloudeventsformat type: DeliveryFormat displayName: CloudEventsFormat discriminatorValue: CloudEvents diff --git a/api-specs/api/types/subscription/CloudEventsPayload.raml b/api-specs/api/types/subscription/CloudEventsPayload.raml index 35678acc83..b0b6a601bb 100644 --- a/api-specs/api/types/subscription/CloudEventsPayload.raml +++ b/api-specs/api/types/subscription/CloudEventsPayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#delivery-payloads-for-the-cloudeventsformat type: object displayName: CloudEventsPayload discriminatorValue: CloudEvents diff --git a/api-specs/api/types/subscription/DeliveryFormat.raml b/api-specs/api/types/subscription/DeliveryFormat.raml index b723180aa5..c0b33e3747 100644 --- a/api-specs/api/types/subscription/DeliveryFormat.raml +++ b/api-specs/api/types/subscription/DeliveryFormat.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#deliveryformat type: object displayName: DeliveryFormat discriminator: type diff --git a/api-specs/api/types/subscription/DeliveryPayload.raml b/api-specs/api/types/subscription/DeliveryPayload.raml index 0a7aa6ee1b..28eeca823f 100644 --- a/api-specs/api/types/subscription/DeliveryPayload.raml +++ b/api-specs/api/types/subscription/DeliveryPayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#delivery-payloads-for-the-platformformat type: object displayName: DeliveryPayload discriminator: notificationType diff --git a/api-specs/api/types/subscription/MessageDeliveryPayload.raml b/api-specs/api/types/subscription/MessageDeliveryPayload.raml index 80a2d3d3c2..48c27b12d7 100644 --- a/api-specs/api/types/subscription/MessageDeliveryPayload.raml +++ b/api-specs/api/types/subscription/MessageDeliveryPayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#messagedeliverypayload type: DeliveryPayload displayName: MessageDeliveryPayload discriminatorValue: Message diff --git a/api-specs/api/types/subscription/PayloadNotIncluded.raml b/api-specs/api/types/subscription/PayloadNotIncluded.raml index 132c07ef5e..aafa93996f 100644 --- a/api-specs/api/types/subscription/PayloadNotIncluded.raml +++ b/api-specs/api/types/subscription/PayloadNotIncluded.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#payloadnotincluded displayName: PayloadNotIncluded example: !include ../../examples/Subscription/payload-not-included.example.json type: object diff --git a/api-specs/api/types/subscription/PlatformFormat.raml b/api-specs/api/types/subscription/PlatformFormat.raml index 0a8fb74ffb..bdf3fefe7f 100644 --- a/api-specs/api/types/subscription/PlatformFormat.raml +++ b/api-specs/api/types/subscription/PlatformFormat.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#platformformat type: DeliveryFormat displayName: PlatformFormat discriminatorValue: Platform diff --git a/api-specs/api/types/subscription/ResourceCreatedDeliveryPayload.raml b/api-specs/api/types/subscription/ResourceCreatedDeliveryPayload.raml index 65c9fae22e..db6b16de77 100644 --- a/api-specs/api/types/subscription/ResourceCreatedDeliveryPayload.raml +++ b/api-specs/api/types/subscription/ResourceCreatedDeliveryPayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#resourcecreateddeliverypayload type: DeliveryPayload displayName: ResourceCreatedDeliveryPayload discriminatorValue: ResourceCreated diff --git a/api-specs/api/types/subscription/ResourceDeletedDeliveryPayload.raml b/api-specs/api/types/subscription/ResourceDeletedDeliveryPayload.raml index c6e01e4bd3..3c8ba0549d 100644 --- a/api-specs/api/types/subscription/ResourceDeletedDeliveryPayload.raml +++ b/api-specs/api/types/subscription/ResourceDeletedDeliveryPayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#resourcedeletededeliverypayload type: DeliveryPayload displayName: ResourceDeletedDeliveryPayload discriminatorValue: ResourceDeleted diff --git a/api-specs/api/types/subscription/ResourceUpdatedDeliveryPayload.raml b/api-specs/api/types/subscription/ResourceUpdatedDeliveryPayload.raml index 11f390d93e..1b34befee8 100644 --- a/api-specs/api/types/subscription/ResourceUpdatedDeliveryPayload.raml +++ b/api-specs/api/types/subscription/ResourceUpdatedDeliveryPayload.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#resourceupdateddeliverypayload type: DeliveryPayload displayName: ResourceUpdatedDeliveryPayload discriminatorValue: ResourceUpdated diff --git a/api-specs/api/types/subscription/Subscription.raml b/api-specs/api/types/subscription/Subscription.raml index d805f89f06..4874763e9d 100644 --- a/api-specs/api/types/subscription/Subscription.raml +++ b/api-specs/api/types/subscription/Subscription.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#subscription type: BaseResource displayName: Subscription (updateType): SubscriptionUpdate @@ -28,12 +27,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Subscription. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Subscription. changes: type: ChangeSubscription[] description: | diff --git a/api-specs/api/types/subscription/SubscriptionDraft.raml b/api-specs/api/types/subscription/SubscriptionDraft.raml index e9df000950..6e71106941 100644 --- a/api-specs/api/types/subscription/SubscriptionDraft.raml +++ b/api-specs/api/types/subscription/SubscriptionDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#subscriptiondraft type: object displayName: SubscriptionDraft example: !include ../../examples/subscription-create.example.json diff --git a/api-specs/api/types/subscription/SubscriptionHealthStatus.raml b/api-specs/api/types/subscription/SubscriptionHealthStatus.raml index 971f13ab69..6f27951ee0 100644 --- a/api-specs/api/types/subscription/SubscriptionHealthStatus.raml +++ b/api-specs/api/types/subscription/SubscriptionHealthStatus.raml @@ -1,17 +1,19 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#subscriptionhealthstatus displayName: SubscriptionHealthStatus description: | - The health status of the Subscription that indicates whether messages are being delivered to the Destination. + The health status of the Subscription that indicates whether messages are being delivered. type: string (enumDescriptions): Healthy: Delivers messages as expected. ConfigurationError: Messages cannot be delivered with the current configuration. Common causes are deleting the Destination queue, deleting access credentials, or removing the necessary permissions. The configuration can be fixed by re-creating the configuration on the Destination side, or by setting a new configuration with the [Change Destination](/../api/projects/subscriptions#change-destination) update action. If the configuration is fixed, undelivered messages will be delivered and the `status` will change to [Healthy](ctp:api:type:SubscriptionHealthStatus). `ConfigurationError` is automatically turned into `ConfigurationErrorDeliveryStopped` after some time. For more information, see [Delivery Guarantees](#delivery-guarantees). ConfigurationErrorDeliveryStopped: Does not deliver messages with the current configuration and the delivery of the messages is no longer attempted. If the configuration is fixed, undelivered messages are not retained and will not be delivered. The `status` will change to [Healthy](ctp:api:type:SubscriptionHealthStatus) as soon as new messages can be delivered. TemporaryError: Does not deliver messages temporarily due to reasons other than a configuration error. For example, the Destination has a temporary outage. + ManuallySuspended: Does not deliver messages with the current configuration and the delivery of the messages is no longer attempted. Undelivered messages are not retained and will not be delivered. The `status` will not automatically change to [Healthy](ctp:api:type:SubscriptionHealthStatus). To return your subscriptions to a [Healthy](ctp:api:type:SubscriptionHealthStatus) status, please contact our [support team](https://commercetools.atlassian.net/servicedesk/customer/portal/22). + enum: - Healthy - ConfigurationError - ConfigurationErrorDeliveryStopped - TemporaryError + - ManuallySuspended diff --git a/api-specs/api/types/subscription/updates/SubscriptionChangeDestinationAction.raml b/api-specs/api/types/subscription/updates/SubscriptionChangeDestinationAction.raml index 600fc2c69a..106ef987ed 100644 --- a/api-specs/api/types/subscription/updates/SubscriptionChangeDestinationAction.raml +++ b/api-specs/api/types/subscription/updates/SubscriptionChangeDestinationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#change-destination type: SubscriptionUpdateAction displayName: SubscriptionChangeDestinationAction discriminatorValue: changeDestination diff --git a/api-specs/api/types/subscription/updates/SubscriptionSetChangesAction.raml b/api-specs/api/types/subscription/updates/SubscriptionSetChangesAction.raml index 759a7a58b7..89c1e8e7d3 100644 --- a/api-specs/api/types/subscription/updates/SubscriptionSetChangesAction.raml +++ b/api-specs/api/types/subscription/updates/SubscriptionSetChangesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#set-changes type: SubscriptionUpdateAction displayName: SubscriptionSetChangesAction discriminatorValue: setChanges diff --git a/api-specs/api/types/subscription/updates/SubscriptionSetKeyAction.raml b/api-specs/api/types/subscription/updates/SubscriptionSetKeyAction.raml index 8e6c7e52cc..11a0bbeac9 100644 --- a/api-specs/api/types/subscription/updates/SubscriptionSetKeyAction.raml +++ b/api-specs/api/types/subscription/updates/SubscriptionSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#set-key type: SubscriptionUpdateAction displayName: SubscriptionSetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/subscription/updates/SubscriptionSetMessagesAction.raml b/api-specs/api/types/subscription/updates/SubscriptionSetMessagesAction.raml index 893b651e8e..dc75b93f68 100644 --- a/api-specs/api/types/subscription/updates/SubscriptionSetMessagesAction.raml +++ b/api-specs/api/types/subscription/updates/SubscriptionSetMessagesAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Subscription -(docs-uri): https://docs.commercetools.com/api/projects/subscriptions#set-messages type: SubscriptionUpdateAction displayName: SubscriptionSetMessagesAction discriminatorValue: setMessages diff --git a/api-specs/api/types/tax-category/SubRate.raml b/api-specs/api/types/tax-category/SubRate.raml index 4733e605d7..b1e683c10d 100644 --- a/api-specs/api/types/tax-category/SubRate.raml +++ b/api-specs/api/types/tax-category/SubRate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#subrate type: object displayName: SubRate description: It is used to calculate the [taxPortions](/../api/projects/carts#taxedprice) field in a Cart or Order. diff --git a/api-specs/api/types/tax-category/TaxCategory.raml b/api-specs/api/types/tax-category/TaxCategory.raml index fdd93312b7..d206c84635 100644 --- a/api-specs/api/types/tax-category/TaxCategory.raml +++ b/api-specs/api/types/tax-category/TaxCategory.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#taxcategory type: BaseResource displayName: TaxCategory (updateType): TaxCategoryUpdate @@ -27,12 +26,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the TaxCategory. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the TaxCategory. name: type: string description: | diff --git a/api-specs/api/types/tax-category/TaxCategoryDraft.raml b/api-specs/api/types/tax-category/TaxCategoryDraft.raml index 120fefca75..81add33ea5 100644 --- a/api-specs/api/types/tax-category/TaxCategoryDraft.raml +++ b/api-specs/api/types/tax-category/TaxCategoryDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#taxcategorydraft type: object displayName: TaxCategoryDraft properties: diff --git a/api-specs/api/types/tax-category/TaxCategoryReference.raml b/api-specs/api/types/tax-category/TaxCategoryReference.raml index 439c0b5bb0..16a78aa957 100644 --- a/api-specs/api/types/tax-category/TaxCategoryReference.raml +++ b/api-specs/api/types/tax-category/TaxCategoryReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#taxcategoryreference type: Reference displayName: TaxCategoryReference discriminatorValue: tax-category diff --git a/api-specs/api/types/tax-category/TaxCategoryResourceIdentifier.raml b/api-specs/api/types/tax-category/TaxCategoryResourceIdentifier.raml index 5b79bdce49..c1828ff841 100644 --- a/api-specs/api/types/tax-category/TaxCategoryResourceIdentifier.raml +++ b/api-specs/api/types/tax-category/TaxCategoryResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#taxcategoryresourceidentifier type: ResourceIdentifier displayName: TaxCategoryResourceIdentifier discriminatorValue: tax-category diff --git a/api-specs/api/types/tax-category/TaxRate.raml b/api-specs/api/types/tax-category/TaxRate.raml index 00dedc6371..58835b7dd3 100644 --- a/api-specs/api/types/tax-category/TaxRate.raml +++ b/api-specs/api/types/tax-category/TaxRate.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#taxrate type: object displayName: TaxRate properties: diff --git a/api-specs/api/types/tax-category/TaxRateDraft.raml b/api-specs/api/types/tax-category/TaxRateDraft.raml index f4ee512a47..5aa1f8edc4 100644 --- a/api-specs/api/types/tax-category/TaxRateDraft.raml +++ b/api-specs/api/types/tax-category/TaxRateDraft.raml @@ -29,7 +29,7 @@ properties: subRates?: type: SubRate[] description: | - Used to calculate the [taxPortions](/../api/projects/carts#taxedprice) field in a Cart or Order. It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate `amount`. + Used to calculate the `taxPortions` field in a [Cart or Order](/../api/projects/carts#taxedprice) or [(Custom) Line Items](/../api/projects/carts#taxeditemprice). It is useful if the total tax of a country (such as the US) is a combination of multiple taxes (such as state and local taxes). The total of all subrates must equal the TaxRate `amount`. key?: type: string description: | diff --git a/api-specs/api/types/tax-category/updates/TaxCategoryAddTaxRateAction.raml b/api-specs/api/types/tax-category/updates/TaxCategoryAddTaxRateAction.raml index cff5c71341..1753bac96d 100644 --- a/api-specs/api/types/tax-category/updates/TaxCategoryAddTaxRateAction.raml +++ b/api-specs/api/types/tax-category/updates/TaxCategoryAddTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#add-tax-rate type: TaxCategoryUpdateAction displayName: TaxCategoryAddTaxRateAction discriminatorValue: addTaxRate diff --git a/api-specs/api/types/tax-category/updates/TaxCategoryChangeNameAction.raml b/api-specs/api/types/tax-category/updates/TaxCategoryChangeNameAction.raml index fd262e28ed..80b96fc57c 100644 --- a/api-specs/api/types/tax-category/updates/TaxCategoryChangeNameAction.raml +++ b/api-specs/api/types/tax-category/updates/TaxCategoryChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#change-name type: TaxCategoryUpdateAction displayName: TaxCategoryChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/tax-category/updates/TaxCategoryRemoveTaxRateAction.raml b/api-specs/api/types/tax-category/updates/TaxCategoryRemoveTaxRateAction.raml index c093b877be..33f445539b 100644 --- a/api-specs/api/types/tax-category/updates/TaxCategoryRemoveTaxRateAction.raml +++ b/api-specs/api/types/tax-category/updates/TaxCategoryRemoveTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#remove-tax-rate type: TaxCategoryUpdateAction displayName: TaxCategoryRemoveTaxRateAction discriminatorValue: removeTaxRate diff --git a/api-specs/api/types/tax-category/updates/TaxCategoryReplaceTaxRateAction.raml b/api-specs/api/types/tax-category/updates/TaxCategoryReplaceTaxRateAction.raml index 0bef36609e..2f14eeb88a 100644 --- a/api-specs/api/types/tax-category/updates/TaxCategoryReplaceTaxRateAction.raml +++ b/api-specs/api/types/tax-category/updates/TaxCategoryReplaceTaxRateAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#replace-tax-rate type: TaxCategoryUpdateAction displayName: TaxCategoryReplaceTaxRateAction discriminatorValue: replaceTaxRate diff --git a/api-specs/api/types/tax-category/updates/TaxCategorySetDescriptionAction.raml b/api-specs/api/types/tax-category/updates/TaxCategorySetDescriptionAction.raml index 7c042dec6e..30abc45b10 100644 --- a/api-specs/api/types/tax-category/updates/TaxCategorySetDescriptionAction.raml +++ b/api-specs/api/types/tax-category/updates/TaxCategorySetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#set-description type: TaxCategoryUpdateAction displayName: TaxCategorySetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/tax-category/updates/TaxCategorySetKeyAction.raml b/api-specs/api/types/tax-category/updates/TaxCategorySetKeyAction.raml index 469305af08..047288a155 100644 --- a/api-specs/api/types/tax-category/updates/TaxCategorySetKeyAction.raml +++ b/api-specs/api/types/tax-category/updates/TaxCategorySetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): TaxCategory -(docs-uri): https://docs.commercetools.com/api/projects/taxCategories#set-key type: TaxCategoryUpdateAction displayName: TaxCategorySetKeyAction discriminatorValue: setKey diff --git a/api-specs/api/types/type/CustomFieldBooleanType.raml b/api-specs/api/types/type/CustomFieldBooleanType.raml index 64eb9b9fde..4acdb239b0 100644 --- a/api-specs/api/types/type/CustomFieldBooleanType.raml +++ b/api-specs/api/types/type/CustomFieldBooleanType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#booleantype type: FieldType displayName: CustomFieldBooleanType discriminatorValue: Boolean diff --git a/api-specs/api/types/type/CustomFieldDateTimeType.raml b/api-specs/api/types/type/CustomFieldDateTimeType.raml index cf86130742..35d53842dd 100644 --- a/api-specs/api/types/type/CustomFieldDateTimeType.raml +++ b/api-specs/api/types/type/CustomFieldDateTimeType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#datetimetype type: FieldType displayName: CustomFieldDateTimeType discriminatorValue: DateTime diff --git a/api-specs/api/types/type/CustomFieldDateType.raml b/api-specs/api/types/type/CustomFieldDateType.raml index 6b1bbc8d31..4ef403c1c1 100644 --- a/api-specs/api/types/type/CustomFieldDateType.raml +++ b/api-specs/api/types/type/CustomFieldDateType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#datetype type: FieldType displayName: CustomFieldDateType discriminatorValue: Date diff --git a/api-specs/api/types/type/CustomFieldEnumType.raml b/api-specs/api/types/type/CustomFieldEnumType.raml index c8ea90220a..a1113ff537 100644 --- a/api-specs/api/types/type/CustomFieldEnumType.raml +++ b/api-specs/api/types/type/CustomFieldEnumType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#enumtype type: FieldType displayName: CustomFieldEnumType discriminatorValue: Enum diff --git a/api-specs/api/types/type/CustomFieldLocalizedEnumType.raml b/api-specs/api/types/type/CustomFieldLocalizedEnumType.raml index 6f12d122e9..68051977ed 100644 --- a/api-specs/api/types/type/CustomFieldLocalizedEnumType.raml +++ b/api-specs/api/types/type/CustomFieldLocalizedEnumType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#localizedenumtype type: FieldType displayName: CustomFieldLocalizedEnumType discriminatorValue: LocalizedEnum diff --git a/api-specs/api/types/type/CustomFieldLocalizedStringType.raml b/api-specs/api/types/type/CustomFieldLocalizedStringType.raml index 28d3ce7143..aa5db756ae 100644 --- a/api-specs/api/types/type/CustomFieldLocalizedStringType.raml +++ b/api-specs/api/types/type/CustomFieldLocalizedStringType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#localizedstringtype type: FieldType displayName: CustomFieldLocalizedStringType discriminatorValue: LocalizedString diff --git a/api-specs/api/types/type/CustomFieldMoneyType.raml b/api-specs/api/types/type/CustomFieldMoneyType.raml index 8ce54a62e7..68ec6a043b 100644 --- a/api-specs/api/types/type/CustomFieldMoneyType.raml +++ b/api-specs/api/types/type/CustomFieldMoneyType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#moneytype type: FieldType displayName: CustomFieldMoneyType discriminatorValue: Money diff --git a/api-specs/api/types/type/CustomFieldNumberType.raml b/api-specs/api/types/type/CustomFieldNumberType.raml index 460ca1ca84..1b8e533647 100644 --- a/api-specs/api/types/type/CustomFieldNumberType.raml +++ b/api-specs/api/types/type/CustomFieldNumberType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#numbertype type: FieldType displayName: CustomFieldNumberType discriminatorValue: Number diff --git a/api-specs/api/types/type/CustomFieldReferenceType.raml b/api-specs/api/types/type/CustomFieldReferenceType.raml index 7f5016faaf..69e183d11e 100644 --- a/api-specs/api/types/type/CustomFieldReferenceType.raml +++ b/api-specs/api/types/type/CustomFieldReferenceType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#referencetype type: FieldType displayName: CustomFieldReferenceType discriminatorValue: Reference diff --git a/api-specs/api/types/type/CustomFieldSetType.raml b/api-specs/api/types/type/CustomFieldSetType.raml index b87b2a7427..857b9223df 100644 --- a/api-specs/api/types/type/CustomFieldSetType.raml +++ b/api-specs/api/types/type/CustomFieldSetType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#settype type: FieldType displayName: CustomFieldSetType discriminatorValue: Set diff --git a/api-specs/api/types/type/CustomFieldStringType.raml b/api-specs/api/types/type/CustomFieldStringType.raml index 28d29a349a..322049c50a 100644 --- a/api-specs/api/types/type/CustomFieldStringType.raml +++ b/api-specs/api/types/type/CustomFieldStringType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#stringtype type: FieldType displayName: CustomFieldStringType discriminatorValue: String diff --git a/api-specs/api/types/type/CustomFieldTimeType.raml b/api-specs/api/types/type/CustomFieldTimeType.raml index d3be652dff..3ae59abdd7 100644 --- a/api-specs/api/types/type/CustomFieldTimeType.raml +++ b/api-specs/api/types/type/CustomFieldTimeType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#timetype type: FieldType displayName: CustomFieldTimeType discriminatorValue: Time diff --git a/api-specs/api/types/type/CustomFieldValue.raml b/api-specs/api/types/type/CustomFieldValue.raml index d25fab7592..81b9156ef9 100644 --- a/api-specs/api/types/type/CustomFieldValue.raml +++ b/api-specs/api/types/type/CustomFieldValue.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/api/custom-fields#customfieldvalue # This is a union type that we cannot support in SDKs due to lack of discriminator fields type: any displayName: CustomFieldValue diff --git a/api-specs/api/types/type/CustomFields.raml b/api-specs/api/types/type/CustomFields.raml index d035d4e965..926285f694 100644 --- a/api-specs/api/types/type/CustomFields.raml +++ b/api-specs/api/types/type/CustomFields.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-custom-fields.html#custom displayName: CustomFields type: object description: | diff --git a/api-specs/api/types/type/CustomFieldsDraft.raml b/api-specs/api/types/type/CustomFieldsDraft.raml index 21b026f59a..012d1fc358 100644 --- a/api-specs/api/types/type/CustomFieldsDraft.raml +++ b/api-specs/api/types/type/CustomFieldsDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/api/projects/custom-fields#customfieldsdraft displayName: CustomFieldsDraft type: object description: | diff --git a/api-specs/api/types/type/FieldContainer.raml b/api-specs/api/types/type/FieldContainer.raml index 2f7b70b7c7..a204451df7 100644 --- a/api-specs/api/types/type/FieldContainer.raml +++ b/api-specs/api/types/type/FieldContainer.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-custom-fields.html#customfields displayName: FieldContainer type: object (asMap): diff --git a/api-specs/api/types/type/FieldDefinition.raml b/api-specs/api/types/type/FieldDefinition.raml index a8514599da..cb21221276 100644 --- a/api-specs/api/types/type/FieldDefinition.raml +++ b/api-specs/api/types/type/FieldDefinition.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#fielddefinition type: object displayName: FieldDefinition description: | diff --git a/api-specs/api/types/type/FieldType.raml b/api-specs/api/types/type/FieldType.raml index 01c2d2cc73..b5d0ba4b2b 100644 --- a/api-specs/api/types/type/FieldType.raml +++ b/api-specs/api/types/type/FieldType.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#fieldtype type: object displayName: FieldType discriminator: name diff --git a/api-specs/api/types/type/Type.raml b/api-specs/api/types/type/Type.raml index b654e2406a..a587ad4f0d 100644 --- a/api-specs/api/types/type/Type.raml +++ b/api-specs/api/types/type/Type.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#type type: BaseResource displayName: Type (updateType): TypeUpdate @@ -25,12 +24,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Type. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Type. key: type: string description: |- diff --git a/api-specs/api/types/type/TypeDraft.raml b/api-specs/api/types/type/TypeDraft.raml index 1165ccc88d..b34242b989 100644 --- a/api-specs/api/types/type/TypeDraft.raml +++ b/api-specs/api/types/type/TypeDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#typedraft type: object displayName: TypeDraft properties: diff --git a/api-specs/api/types/type/TypeReference.raml b/api-specs/api/types/type/TypeReference.raml index 9354478375..397ebf40ff 100644 --- a/api-specs/api/types/type/TypeReference.raml +++ b/api-specs/api/types/type/TypeReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#type type: Reference displayName: TypeReference discriminatorValue: type diff --git a/api-specs/api/types/type/TypeResourceIdentifier.raml b/api-specs/api/types/type/TypeResourceIdentifier.raml index 1dbeedcdf5..5539c2ad35 100644 --- a/api-specs/api/types/type/TypeResourceIdentifier.raml +++ b/api-specs/api/types/type/TypeResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#type type: ResourceIdentifier displayName: TypeResourceIdentifier discriminatorValue: type diff --git a/api-specs/api/types/type/updates/TypeAddEnumValueAction.raml b/api-specs/api/types/type/updates/TypeAddEnumValueAction.raml index 25a2e56e5a..3e6ff8ded6 100644 --- a/api-specs/api/types/type/updates/TypeAddEnumValueAction.raml +++ b/api-specs/api/types/type/updates/TypeAddEnumValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#add-enumvalue-to-fielddefinition type: TypeUpdateAction displayName: TypeAddEnumValueAction discriminatorValue: addEnumValue diff --git a/api-specs/api/types/type/updates/TypeAddFieldDefinitionAction.raml b/api-specs/api/types/type/updates/TypeAddFieldDefinitionAction.raml index 2691409fdf..3aa693edaa 100644 --- a/api-specs/api/types/type/updates/TypeAddFieldDefinitionAction.raml +++ b/api-specs/api/types/type/updates/TypeAddFieldDefinitionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#add-fielddefinition type: TypeUpdateAction displayName: TypeAddFieldDefinitionAction discriminatorValue: addFieldDefinition diff --git a/api-specs/api/types/type/updates/TypeAddLocalizedEnumValueAction.raml b/api-specs/api/types/type/updates/TypeAddLocalizedEnumValueAction.raml index 1ed943a6a5..08d979533f 100644 --- a/api-specs/api/types/type/updates/TypeAddLocalizedEnumValueAction.raml +++ b/api-specs/api/types/type/updates/TypeAddLocalizedEnumValueAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#add-localizedenumvalue-to-fielddefinition type: TypeUpdateAction displayName: TypeAddLocalizedEnumValueAction discriminatorValue: addLocalizedEnumValue diff --git a/api-specs/api/types/type/updates/TypeChangeEnumValueLabelAction.raml b/api-specs/api/types/type/updates/TypeChangeEnumValueLabelAction.raml index f6ceae07ee..44bf6c91d0 100644 --- a/api-specs/api/types/type/updates/TypeChangeEnumValueLabelAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeEnumValueLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-enumvalue-label type: TypeUpdateAction displayName: TypeChangeEnumValueLabelAction discriminatorValue: changeEnumValueLabel diff --git a/api-specs/api/types/type/updates/TypeChangeEnumValueOrderAction.raml b/api-specs/api/types/type/updates/TypeChangeEnumValueOrderAction.raml index c66e9d64b4..825c433d15 100644 --- a/api-specs/api/types/type/updates/TypeChangeEnumValueOrderAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeEnumValueOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-the-order-of-enumvalues type: TypeUpdateAction displayName: TypeChangeEnumValueOrderAction discriminatorValue: changeEnumValueOrder diff --git a/api-specs/api/types/type/updates/TypeChangeFieldDefinitionOrderAction.raml b/api-specs/api/types/type/updates/TypeChangeFieldDefinitionOrderAction.raml index 9d0f6d0247..668b49905f 100644 --- a/api-specs/api/types/type/updates/TypeChangeFieldDefinitionOrderAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeFieldDefinitionOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-the-order-of-fielddefinitions type: TypeUpdateAction displayName: TypeChangeFieldDefinitionOrderAction discriminatorValue: changeFieldDefinitionOrder diff --git a/api-specs/api/types/type/updates/TypeChangeInputHintAction.raml b/api-specs/api/types/type/updates/TypeChangeInputHintAction.raml index 58043f8664..b7513500b2 100644 --- a/api-specs/api/types/type/updates/TypeChangeInputHintAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeInputHintAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-inputhint type: TypeUpdateAction displayName: TypeChangeInputHintAction discriminatorValue: changeInputHint diff --git a/api-specs/api/types/type/updates/TypeChangeKeyAction.raml b/api-specs/api/types/type/updates/TypeChangeKeyAction.raml index 0ae8c4ea9f..fbd7467e26 100644 --- a/api-specs/api/types/type/updates/TypeChangeKeyAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-key type: TypeUpdateAction displayName: TypeChangeKeyAction discriminatorValue: changeKey diff --git a/api-specs/api/types/type/updates/TypeChangeLabelAction.raml b/api-specs/api/types/type/updates/TypeChangeLabelAction.raml index 6041401286..defa6916d7 100644 --- a/api-specs/api/types/type/updates/TypeChangeLabelAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-label type: TypeUpdateAction displayName: TypeChangeLabelAction discriminatorValue: changeLabel diff --git a/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueLabelAction.raml b/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueLabelAction.raml index 3166c4ba64..c2f5a0e25f 100644 --- a/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueLabelAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueLabelAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-localizedenumvalue-label type: TypeUpdateAction displayName: TypeChangeLocalizedEnumValueLabelAction discriminatorValue: changeLocalizedEnumValueLabel diff --git a/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueOrderAction.raml b/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueOrderAction.raml index 8a437fe5c1..f9cf3cda22 100644 --- a/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueOrderAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeLocalizedEnumValueOrderAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-the-order-of-localizedenumvalues type: TypeUpdateAction displayName: TypeChangeLocalizedEnumValueOrderAction discriminatorValue: changeLocalizedEnumValueOrder diff --git a/api-specs/api/types/type/updates/TypeChangeNameAction.raml b/api-specs/api/types/type/updates/TypeChangeNameAction.raml index 696cf15275..56a62821b6 100644 --- a/api-specs/api/types/type/updates/TypeChangeNameAction.raml +++ b/api-specs/api/types/type/updates/TypeChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#change-name type: TypeUpdateAction displayName: TypeChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/type/updates/TypeRemoveFieldDefinitionAction.raml b/api-specs/api/types/type/updates/TypeRemoveFieldDefinitionAction.raml index 892c951a05..c3dd949125 100644 --- a/api-specs/api/types/type/updates/TypeRemoveFieldDefinitionAction.raml +++ b/api-specs/api/types/type/updates/TypeRemoveFieldDefinitionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#remove-fielddefinition type: TypeUpdateAction displayName: TypeRemoveFieldDefinitionAction discriminatorValue: removeFieldDefinition diff --git a/api-specs/api/types/type/updates/TypeSetDescriptionAction.raml b/api-specs/api/types/type/updates/TypeSetDescriptionAction.raml index 8eaa4d8782..fe7033d9fe 100644 --- a/api-specs/api/types/type/updates/TypeSetDescriptionAction.raml +++ b/api-specs/api/types/type/updates/TypeSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Type -(docs-uri): https://docs.commercetools.com/http-api-projects-types.html#set-description type: TypeUpdateAction displayName: TypeSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/types.raml b/api-specs/api/types/types.raml index 0983f73dbe..52c6b60826 100644 --- a/api-specs/api/types/types.raml +++ b/api-specs/api/types/types.raml @@ -187,6 +187,7 @@ DiscountCodeInfo: !include cart/DiscountCodeInfo.raml DiscountCodeState: !include cart/DiscountCodeState.raml DiscountOnTotalPrice: !include cart/DiscountOnTotalPrice.raml DiscountedLineItemPortion: !include cart/DiscountedLineItemPortion.raml +DiscountedLineItemPortionDraft: !include cart/DiscountedLineItemPortionDraft.raml DiscountedLineItemPrice: !include cart/DiscountedLineItemPrice.raml DiscountedLineItemPriceForQuantity: !include cart/DiscountedLineItemPriceForQuantity.raml DiscountedTotalPricePortion: !include cart/DiscountedTotalPricePortion.raml @@ -349,6 +350,8 @@ Asset: !include common/Asset.raml AssetDimensions: !include common/AssetDimensions.raml AssetDraft: !include common/AssetDraft.raml AssetSource: !include common/AssetSource.raml +Attribution: !include common/Attribution.raml +AttributionSource: !include common/AttributionSource.raml BaseAddress: !include common/BaseAddress.raml BaseResource: !include common/BaseResource.raml CentPrecisionMoney: !include common/CentPrecisionMoney.raml @@ -468,6 +471,7 @@ DiscountCodeSetCartPredicateAction: !include discount-code/updates/DiscountCodeS DiscountCodeSetCustomFieldAction: !include discount-code/updates/DiscountCodeSetCustomFieldAction.raml DiscountCodeSetCustomTypeAction: !include discount-code/updates/DiscountCodeSetCustomTypeAction.raml DiscountCodeSetDescriptionAction: !include discount-code/updates/DiscountCodeSetDescriptionAction.raml +DiscountCodeSetKeyAction: !include discount-code/updates/DiscountCodeSetKeyAction.raml DiscountCodeSetMaxApplicationsAction: !include discount-code/updates/DiscountCodeSetMaxApplicationsAction.raml # yamllint disable-line rule:line-length DiscountCodeSetMaxApplicationsPerCustomerAction: !include discount-code/updates/DiscountCodeSetMaxApplicationsPerCustomerAction.raml @@ -523,6 +527,7 @@ InvalidOperationError: !include error/InvalidOperationError.raml InvalidSubjectError: !include error/InvalidSubjectError.raml InvalidTokenError: !include error/InvalidTokenError.raml LanguageUsedInStoresError: !include error/LanguageUsedInStoresError.raml +LockedFieldError: !include error/LockedFieldError.raml MatchingPriceNotFoundError: !include error/MatchingPriceNotFoundError.raml MaxCartDiscountsReachedError: !include error/MaxCartDiscountsReachedError.raml MaxResourceLimitExceededError: !include error/MaxResourceLimitExceededError.raml @@ -602,6 +607,7 @@ GraphQLInvalidOperationError: !include error/graphql/GraphQLInvalidOperationErro GraphQLInvalidSubjectError: !include error/graphql/GraphQLInvalidSubjectError.raml GraphQLInvalidTokenError: !include error/graphql/GraphQLInvalidTokenError.raml GraphQLLanguageUsedInStoresError: !include error/graphql/GraphQLLanguageUsedInStoresError.raml +GraphQLLockedFieldError: !include error/graphql/GraphQLLockedFieldError.raml GraphQLMatchingPriceNotFoundError: !include error/graphql/GraphQLMatchingPriceNotFoundError.raml GraphQLMaxCartDiscountsReachedError: !include error/graphql/GraphQLMaxCartDiscountsReachedError.raml GraphQLMaxResourceLimitExceededError: !include error/graphql/GraphQLMaxResourceLimitExceededError.raml @@ -902,6 +908,9 @@ DeliveryAddedMessage: !include message/DeliveryAddedMessage.raml DeliveryAddressSetMessage: !include message/DeliveryAddressSetMessage.raml DeliveryItemsUpdatedMessage: !include message/DeliveryItemsUpdatedMessage.raml DeliveryRemovedMessage: !include message/DeliveryRemovedMessage.raml +DiscountCodeCreatedMessage: !include message/DiscountCodeCreatedMessage.raml +DiscountCodeDeletedMessage: !include message/DiscountCodeDeletedMessage.raml +DiscountCodeKeySetMessage: !include message/DiscountCodeKeySetMessage.raml InventoryEntryCreatedMessage: !include message/InventoryEntryCreatedMessage.raml InventoryEntryDeletedMessage: !include message/InventoryEntryDeletedMessage.raml InventoryEntryQuantitySetMessage: !include message/InventoryEntryQuantitySetMessage.raml @@ -982,6 +991,13 @@ ProductSelectionVariantExclusionChangedMessage: !include message/ProductSelectio ProductSelectionVariantSelectionChangedMessage: !include message/ProductSelectionVariantSelectionChangedMessage.raml ProductSlugChangedMessage: !include message/ProductSlugChangedMessage.raml ProductStateTransitionMessage: !include message/ProductStateTransitionMessage.raml +ProductTailoringCreatedMessage: !include message/ProductTailoringCreatedMessage.raml +ProductTailoringDeletedMessage: !include message/ProductTailoringDeletedMessage.raml +ProductTailoringDescriptionSetMessage: !include message/ProductTailoringDescriptionSetMessage.raml +ProductTailoringNameSetMessage: !include message/ProductTailoringNameSetMessage.raml +ProductTailoringPublishedMessage: !include message/ProductTailoringPublishedMessage.raml +ProductTailoringSlugSetMessage: !include message/ProductTailoringSlugSetMessage.raml +ProductTailoringUnpublishedMessage: !include message/ProductTailoringUnpublishedMessage.raml ProductUnpublishedMessage: !include message/ProductUnpublishedMessage.raml ProductVariantAddedMessage: !include message/ProductVariantAddedMessage.raml ProductVariantDeletedMessage: !include message/ProductVariantDeletedMessage.raml @@ -1146,6 +1162,9 @@ DeliveryAddedMessagePayload: !include message/payload/DeliveryAddedMessagePayloa DeliveryAddressSetMessagePayload: !include message/payload/DeliveryAddressSetMessagePayload.raml DeliveryItemsUpdatedMessagePayload: !include message/payload/DeliveryItemsUpdatedMessagePayload.raml DeliveryRemovedMessagePayload: !include message/payload/DeliveryRemovedMessagePayload.raml +DiscountCodeCreatedMessagePayload: !include message/payload/DiscountCodeCreatedMessagePayload.raml +DiscountCodeDeletedMessagePayload: !include message/payload/DiscountCodeDeletedMessagePayload.raml +DiscountCodeKeySetMessagePayload: !include message/payload/DiscountCodeKeySetMessagePayload.raml InventoryEntryCreatedMessagePayload: !include message/payload/InventoryEntryCreatedMessagePayload.raml InventoryEntryDeletedMessagePayload: !include message/payload/InventoryEntryDeletedMessagePayload.raml InventoryEntryQuantitySetMessagePayload: !include message/payload/InventoryEntryQuantitySetMessagePayload.raml @@ -1229,6 +1248,13 @@ ProductSelectionVariantExclusionChangedMessagePayload: !include message/payload/ ProductSelectionVariantSelectionChangedMessagePayload: !include message/payload/ProductSelectionVariantSelectionChangedMessagePayload.raml ProductSlugChangedMessagePayload: !include message/payload/ProductSlugChangedMessagePayload.raml ProductStateTransitionMessagePayload: !include message/payload/ProductStateTransitionMessagePayload.raml +ProductTailoringCreatedMessagePayload: !include message/payload/ProductTailoringCreatedMessagePayload.raml +ProductTailoringDeletedMessagePayload: !include message/payload/ProductTailoringDeletedMessagePayload.raml +ProductTailoringDescriptionSetMessagePayload: !include message/payload/ProductTailoringDescriptionSetMessagePayload.raml +ProductTailoringNameSetMessagePayload: !include message/payload/ProductTailoringNameSetMessagePayload.raml +ProductTailoringPublishedMessagePayload: !include message/payload/ProductTailoringPublishedMessagePayload.raml +ProductTailoringSlugSetMessagePayload: !include message/payload/ProductTailoringSlugSetMessagePayload.raml +ProductTailoringUnpublishedMessagePayload: !include message/payload/ProductTailoringUnpublishedMessagePayload.raml ProductUnpublishedMessagePayload: !include message/payload/ProductUnpublishedMessagePayload.raml ProductVariantAddedMessagePayload: !include message/payload/ProductVariantAddedMessagePayload.raml ProductVariantDeletedMessagePayload: !include message/payload/ProductVariantDeletedMessagePayload.raml @@ -1598,6 +1624,31 @@ ProductDiscountSetValidFromAction: !include product-discount/updates/ProductDisc # yamllint disable-line rule:line-length ProductDiscountSetValidFromAndUntilAction: !include product-discount/updates/ProductDiscountSetValidFromAndUntilAction.raml ProductDiscountSetValidUntilAction: !include product-discount/updates/ProductDiscountSetValidUntilAction.raml +ProductPagedSearchResponse: !include product-search/ProductPagedSearchResponse.raml +ProductSearchErrorResponse: !include product-search/ProductSearchErrorResponse.raml +ProductSearchMatchingVariantEntry: !include product-search/ProductSearchMatchingVariantEntry.raml +ProductSearchMatchingVariants: !include product-search/ProductSearchMatchingVariants.raml +ProductSearchProjectionParams: !include product-search/ProductSearchProjectionParams.raml +ProductSearchRequest: !include product-search/ProductSearchRequest.raml +ProductSearchResult: !include product-search/ProductSearchResult.raml +ProductSearchFacetCountExpression: !include product-search/facets/ProductSearchFacetCountExpression.raml +ProductSearchFacetCountLevelEnum: !include product-search/facets/ProductSearchFacetCountLevelEnum.raml +ProductSearchFacetCountValue: !include product-search/facets/ProductSearchFacetCountValue.raml +ProductSearchFacetDistinctBucketSortBy: !include product-search/facets/ProductSearchFacetDistinctBucketSortBy.raml +# yamllint disable-line rule:line-length +ProductSearchFacetDistinctBucketSortExpression: !include product-search/facets/ProductSearchFacetDistinctBucketSortExpression.raml +ProductSearchFacetDistinctExpression: !include product-search/facets/ProductSearchFacetDistinctExpression.raml +ProductSearchFacetDistinctValue: !include product-search/facets/ProductSearchFacetDistinctValue.raml +ProductSearchFacetExpression: !include product-search/facets/ProductSearchFacetExpression.raml +ProductSearchFacetRangesExpression: !include product-search/facets/ProductSearchFacetRangesExpression.raml +ProductSearchFacetRangesFacetRange: !include product-search/facets/ProductSearchFacetRangesFacetRange.raml +ProductSearchFacetRangesValue: !include product-search/facets/ProductSearchFacetRangesValue.raml +ProductSearchFacetResult: !include product-search/facets/ProductSearchFacetResult.raml +ProductSearchFacetResultBucket: !include product-search/facets/ProductSearchFacetResultBucket.raml +ProductSearchFacetResultBucketEntry: !include product-search/facets/ProductSearchFacetResultBucketEntry.raml +ProductSearchFacetResultCount: !include product-search/facets/ProductSearchFacetResultCount.raml +ProductSearchFacetScope: !include product-search/facets/ProductSearchFacetScope.raml +ProductSearchFacetScopeEnum: !include product-search/facets/ProductSearchFacetScopeEnum.raml AssignedProductReference: !include product-selection/AssignedProductReference.raml AssignedProductSelection: !include product-selection/AssignedProductSelection.raml AssignedProductSelectionPagedQueryResponse: !include product-selection/AssignedProductSelectionPagedQueryResponse.raml @@ -1634,6 +1685,25 @@ ProductSelectionSetKeyAction: !include product-selection/updates/ProductSelectio ProductSelectionSetVariantExclusionAction: !include product-selection/updates/ProductSelectionSetVariantExclusionAction.raml # yamllint disable-line rule:line-length ProductSelectionSetVariantSelectionAction: !include product-selection/updates/ProductSelectionSetVariantSelectionAction.raml +ProductTailoring: !include product-tailoring/ProductTailoring.raml +ProductTailoringData: !include product-tailoring/ProductTailoringData.raml +ProductTailoringDraft: !include product-tailoring/ProductTailoringDraft.raml +ProductTailoringInStoreDraft: !include product-tailoring/ProductTailoringInStoreDraft.raml +ProductTailoringPagedQueryResponse: !include product-tailoring/ProductTailoringPagedQueryResponse.raml +ProductTailoringReference: !include product-tailoring/ProductTailoringReference.raml +ProductTailoringResourceIdentifier: !include product-tailoring/ProductTailoringResourceIdentifier.raml +ProductTailoringUpdate: !include product-tailoring/ProductTailoringUpdate.raml +ProductTailoringUpdateAction: !include product-tailoring/ProductTailoringUpdateAction.raml +ProductTailoringPublishAction: !include product-tailoring/updates/ProductTailoringPublishAction.raml +ProductTailoringSetDescriptionAction: !include product-tailoring/updates/ProductTailoringSetDescriptionAction.raml +ProductTailoringSetMetaAttributesAction: !include product-tailoring/updates/ProductTailoringSetMetaAttributesAction.raml +# yamllint disable-line rule:line-length +ProductTailoringSetMetaDescriptionAction: !include product-tailoring/updates/ProductTailoringSetMetaDescriptionAction.raml +ProductTailoringSetMetaKeywordsAction: !include product-tailoring/updates/ProductTailoringSetMetaKeywordsAction.raml +ProductTailoringSetMetaTitleAction: !include product-tailoring/updates/ProductTailoringSetMetaTitleAction.raml +ProductTailoringSetNameAction: !include product-tailoring/updates/ProductTailoringSetNameAction.raml +ProductTailoringSetSlugAction: !include product-tailoring/updates/ProductTailoringSetSlugAction.raml +ProductTailoringUnpublishAction: !include product-tailoring/updates/ProductTailoringUnpublishAction.raml AttributeBooleanType: !include product-type/AttributeBooleanType.raml AttributeConstraintEnum: !include product-type/AttributeConstraintEnum.raml AttributeConstraintEnumDraft: !include product-type/AttributeConstraintEnumDraft.raml @@ -1785,6 +1855,8 @@ CartValueType: !include project/CartValueType.raml CartsConfiguration: !include project/CartsConfiguration.raml ExternalOAuth: !include project/ExternalOAuth.raml OrderSearchStatus: !include project/OrderSearchStatus.raml +ProductSearchIndexingMode: !include project/ProductSearchIndexingMode.raml +ProductSearchStatus: !include project/ProductSearchStatus.raml Project: !include project/Project.raml ProjectUpdate: !include project/ProjectUpdate.raml ProjectUpdateAction: !include project/ProjectUpdateAction.raml @@ -1859,6 +1931,40 @@ ReviewSetTargetAction: !include review/updates/ReviewSetTargetAction.raml ReviewSetTextAction: !include review/updates/ReviewSetTextAction.raml ReviewSetTitleAction: !include review/updates/ReviewSetTitleAction.raml ReviewTransitionStateAction: !include review/updates/ReviewTransitionStateAction.raml +SearchAndExpression: !include search/SearchAndExpression.raml +SearchAnyValue: !include search/SearchAnyValue.raml +SearchCompoundExpression: !include search/SearchCompoundExpression.raml +SearchDateRangeExpression: !include search/SearchDateRangeExpression.raml +SearchDateRangeValue: !include search/SearchDateRangeValue.raml +SearchDateTimeRangeExpression: !include search/SearchDateTimeRangeExpression.raml +SearchDateTimeRangeValue: !include search/SearchDateTimeRangeValue.raml +SearchExactExpression: !include search/SearchExactExpression.raml +SearchExistsExpression: !include search/SearchExistsExpression.raml +SearchExistsValue: !include search/SearchExistsValue.raml +SearchFieldType: !include search/SearchFieldType.raml +SearchFilterExpression: !include search/SearchFilterExpression.raml +SearchFullTextExpression: !include search/SearchFullTextExpression.raml +SearchFullTextPrefixExpression: !include search/SearchFullTextPrefixExpression.raml +SearchFullTextPrefixValue: !include search/SearchFullTextPrefixValue.raml +SearchFullTextValue: !include search/SearchFullTextValue.raml +SearchLongRangeExpression: !include search/SearchLongRangeExpression.raml +SearchLongRangeValue: !include search/SearchLongRangeValue.raml +SearchMatchType: !include search/SearchMatchType.raml +SearchMatchingVariant: !include search/SearchMatchingVariant.raml +SearchNotExpression: !include search/SearchNotExpression.raml +SearchNumberRangeExpression: !include search/SearchNumberRangeExpression.raml +SearchNumberRangeValue: !include search/SearchNumberRangeValue.raml +SearchOrExpression: !include search/SearchOrExpression.raml +SearchPrefixExpression: !include search/SearchPrefixExpression.raml +SearchQuery: !include search/SearchQuery.raml +SearchQueryExpression: !include search/SearchQueryExpression.raml +SearchQueryExpressionValue: !include search/SearchQueryExpressionValue.raml +SearchSortMode: !include search/SearchSortMode.raml +SearchSortOrder: !include search/SearchSortOrder.raml +SearchSorting: !include search/SearchSorting.raml +SearchTimeRangeExpression: !include search/SearchTimeRangeExpression.raml +SearchTimeRangeValue: !include search/SearchTimeRangeValue.raml +SearchWildCardExpression: !include search/SearchWildCardExpression.raml CartClassificationTier: !include shipping-method/CartClassificationTier.raml CartScoreTier: !include shipping-method/CartScoreTier.raml CartValueTier: !include shipping-method/CartValueTier.raml diff --git a/api-specs/api/types/zone/Location.raml b/api-specs/api/types/zone/Location.raml index 14238ac208..62b5775f5c 100644 --- a/api-specs/api/types/zone/Location.raml +++ b/api-specs/api/types/zone/Location.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#location type: object displayName: Location description: A geographical location representing a country and optionally a state within this country. A location can only be assigned to one Zone. diff --git a/api-specs/api/types/zone/Zone.raml b/api-specs/api/types/zone/Zone.raml index 5be8624527..8363b8e475 100644 --- a/api-specs/api/types/zone/Zone.raml +++ b/api-specs/api/types/zone/Zone.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#zone type: BaseResource displayName: Zone (updateType): ZoneUpdate @@ -26,12 +25,12 @@ properties: type: LastModifiedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that last modified the Zone. createdBy?: type: CreatedBy (beta): true description: | - Present on resources created after 1 February 2019 except for [events not tracked](/../api/general-concepts#events-tracked). + IDs and references that created the Zone. key?: type: string description: | diff --git a/api-specs/api/types/zone/ZoneDraft.raml b/api-specs/api/types/zone/ZoneDraft.raml index c6202b529d..0facecebff 100644 --- a/api-specs/api/types/zone/ZoneDraft.raml +++ b/api-specs/api/types/zone/ZoneDraft.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#zonedraft type: object displayName: ZoneDraft example: !include ../../examples/zone-create.example.json diff --git a/api-specs/api/types/zone/ZoneReference.raml b/api-specs/api/types/zone/ZoneReference.raml index f665ea9784..0f7ea8bdbf 100644 --- a/api-specs/api/types/zone/ZoneReference.raml +++ b/api-specs/api/types/zone/ZoneReference.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#zonereference type: Reference displayName: ZoneReference discriminatorValue: zone diff --git a/api-specs/api/types/zone/ZoneResourceIdentifier.raml b/api-specs/api/types/zone/ZoneResourceIdentifier.raml index 34019aaeba..4bbe5ecd0a 100644 --- a/api-specs/api/types/zone/ZoneResourceIdentifier.raml +++ b/api-specs/api/types/zone/ZoneResourceIdentifier.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#zoneresourceidentifier type: ResourceIdentifier displayName: ZoneResourceIdentifier discriminatorValue: zone diff --git a/api-specs/api/types/zone/updates/ZoneAddLocationAction.raml b/api-specs/api/types/zone/updates/ZoneAddLocationAction.raml index f872750d7f..47dc3004f4 100644 --- a/api-specs/api/types/zone/updates/ZoneAddLocationAction.raml +++ b/api-specs/api/types/zone/updates/ZoneAddLocationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#add-location type: ZoneUpdateAction displayName: ZoneAddLocationAction discriminatorValue: addLocation diff --git a/api-specs/api/types/zone/updates/ZoneChangeNameAction.raml b/api-specs/api/types/zone/updates/ZoneChangeNameAction.raml index 8fdf39f581..a9fd6518c1 100644 --- a/api-specs/api/types/zone/updates/ZoneChangeNameAction.raml +++ b/api-specs/api/types/zone/updates/ZoneChangeNameAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#change-name type: ZoneUpdateAction displayName: ZoneChangeNameAction discriminatorValue: changeName diff --git a/api-specs/api/types/zone/updates/ZoneRemoveLocationAction.raml b/api-specs/api/types/zone/updates/ZoneRemoveLocationAction.raml index 0c377c157c..8264fb8dcb 100644 --- a/api-specs/api/types/zone/updates/ZoneRemoveLocationAction.raml +++ b/api-specs/api/types/zone/updates/ZoneRemoveLocationAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#remove-location type: ZoneUpdateAction displayName: ZoneRemoveLocationAction discriminatorValue: removeLocation diff --git a/api-specs/api/types/zone/updates/ZoneSetDescriptionAction.raml b/api-specs/api/types/zone/updates/ZoneSetDescriptionAction.raml index 2444927933..1c29c9868b 100644 --- a/api-specs/api/types/zone/updates/ZoneSetDescriptionAction.raml +++ b/api-specs/api/types/zone/updates/ZoneSetDescriptionAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#set-description type: ZoneUpdateAction displayName: ZoneSetDescriptionAction discriminatorValue: setDescription diff --git a/api-specs/api/types/zone/updates/ZoneSetKeyAction.raml b/api-specs/api/types/zone/updates/ZoneSetKeyAction.raml index c86ff1ac47..0a0d14b3b4 100644 --- a/api-specs/api/types/zone/updates/ZoneSetKeyAction.raml +++ b/api-specs/api/types/zone/updates/ZoneSetKeyAction.raml @@ -1,6 +1,5 @@ #%RAML 1.0 DataType (package): Zone -(docs-uri): https://docs.commercetools.com/api/projects/zones#set-key type: ZoneUpdateAction displayName: ZoneSetKeyAction discriminatorValue: setKey