Skip to content

Commit da68d77

Browse files
committed
Updated API from documentation release
1 parent 8b51ad0 commit da68d77

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

api-specs/api/examples/Project/Project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"enabled": false
1111
},
1212
"carts": {
13+
"deleteDaysAfterLastModification": 90,
1314
"countryTaxRateFallbackEnabled": false
1415
},
1516
"discounts": {

api-specs/api/examples/Project/updated-Project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"enabled": false
1111
},
1212
"carts": {
13-
"countryTaxRateFallbackEnabled": false
13+
"countryTaxRateFallbackEnabled": false,
14+
"deleteDaysAfterLastModification": 90
1415
},
1516
"discounts": {
1617
"discountCombinationMode": "Stacking"

api-specs/api/types/project/CartsConfiguration.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: object
44
displayName: CartsConfiguration
55
example: !include ../../examples/Project/CartsConfiguration.json
66
properties:
7-
deleteDaysAfterLastModification?:
7+
deleteDaysAfterLastModification:
88
type: number
99
format: int64
1010
default: 90

api-specs/api/types/project/ShoppingListsConfiguration.raml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: object
44
displayName: ShoppingListsConfiguration
55
example: !include ../../examples/Project/ShoppingListsConfiguration.json
66
properties:
7-
deleteDaysAfterLastModification?:
7+
deleteDaysAfterLastModification:
88
default: 360
99
minimum: 1
1010
maximum: 365250

api-specs/graphql/schema.sdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2304,7 +2304,7 @@ type CartValueType implements ShippingRateInputType {
23042304
}
23052305

23062306
type CartsConfiguration {
2307-
deleteDaysAfterLastModification: Int
2307+
deleteDaysAfterLastModification: Int!
23082308
allowAddingUnpublishedProducts: Boolean!
23092309
countryTaxRateFallbackEnabled: Boolean!
23102310
taxRoundingMode: RoundingMode!
@@ -15636,7 +15636,7 @@ input ShoppingListUpdateAction {
1563615636
}
1563715637

1563815638
type ShoppingListsConfiguration {
15639-
deleteDaysAfterLastModification: Int
15639+
deleteDaysAfterLastModification: Int!
1564015640
}
1564115641

1564215642
input ShoppingListsConfigurationInput {

0 commit comments

Comments
 (0)