diff --git a/_data/orgs/commerce-api/v2-internal/api-parts/2-2-shopping-api-internal.json b/_data/orgs/commerce-api/v2-internal/api-parts/2-2-shopping-api-internal.json index 0d4852a28..55fe8aef9 100644 --- a/_data/orgs/commerce-api/v2-internal/api-parts/2-2-shopping-api-internal.json +++ b/_data/orgs/commerce-api/v2-internal/api-parts/2-2-shopping-api-internal.json @@ -526,6 +526,61 @@ "AttributeRelationships" : { "type" : "object" }, + "AvdTicketItemDetailMetadata" : { + "allOf" : [ { + "$ref" : "#/definitions/Metadata" + }, { + "type" : "object", + "properties" : { + "token" : { + "type" : "string" + }, + "price" : { + "$ref" : "#/definitions/AvdTicketItemDetailMetadataPrice" + } + } + } ] + }, + "AvdTicketItemDetailMetadataPrice" : { + "type" : "object", + "properties" : { + "amount" : { + "type" : "string" + }, + "currency" : { + "type" : "string" + } + } + }, + "Buyer" : { + "type" : "object", + "properties" : { + "firstName" : { + "type" : "string" + }, + "lastName" : { + "type" : "string" + }, + "email" : { + "type" : "string" + }, + "phoneNumber" : { + "type" : "string" + }, + "streetAddress" : { + "type" : "string" + }, + "city" : { + "type" : "string" + }, + "state" : { + "type" : "string" + }, + "postalCode" : { + "type" : "string" + } + } + }, "Cart" : { "type" : "object", "properties" : { @@ -721,6 +776,17 @@ "sendRedemptionEmail" : { "type" : "boolean", "default" : false + }, + "buyerInfo" : { + "$ref" : "#/definitions/Buyer" + }, + "paymentInfo" : { + "$ref" : "#/definitions/Payment" + }, + "cartHoldTimeSec" : { + "type" : "integer", + "format" : "int32", + "readOnly" : true } } }, @@ -735,6 +801,10 @@ "items" : { "$ref" : "#/definitions/AddProductRequest" } + }, + "cartHoldTimeSec" : { + "type" : "integer", + "format" : "int32" } } }, @@ -1052,6 +1122,17 @@ } } }, + "Item" : { + "type" : "object", + "properties" : { + "token" : { + "type" : "string" + }, + "price" : { + "$ref" : "#/definitions/Money" + } + } + }, "ItemDetail" : { "type" : "object", "discriminator" : "type", @@ -1157,6 +1238,18 @@ } } }, + "OfferAttribute" : { + "type" : "object", + "properties" : { + "type" : { + "type" : "string" + }, + "id" : { + "type" : "integer", + "format" : "int32" + } + } + }, "OfferAttributes" : { "type" : "object", "properties" : { @@ -1214,8 +1307,24 @@ "password" : { "type" : "string" }, + "items" : { + "type" : "array", + "items" : { + "$ref" : "#/definitions/Item" + } + }, + "attributes" : { + "type" : "array", + "items" : { + "$ref" : "#/definitions/OfferAttribute" + } + }, "offer" : { "type" : "string" + }, + "qty" : { + "type" : "integer", + "format" : "int32" } } }, @@ -1322,17 +1431,11 @@ "Payment" : { "type" : "object", "properties" : { - "id" : { - "type" : "string" - }, - "paymentType" : { + "invoice" : { "type" : "string" }, - "amount" : { - "type" : "string" - }, - "currency" : { - "type" : "string" + "totalAmount" : { + "$ref" : "#/definitions/PaymentAmount" } } }, @@ -1690,6 +1793,11 @@ "pollingCallbackUrl" : { "type" : "string" }, + "cartHoldTimeSec" : { + "type" : "integer", + "format" : "int32", + "readOnly" : true + }, "deliveries" : { "type" : "array", "items" : { @@ -1704,6 +1812,11 @@ "pollingCallbackUrl" : { "type" : "string" }, + "cartHoldTimeSec" : { + "type" : "integer", + "format" : "int32", + "readOnly" : true + }, "payments" : { "type" : "array", "items" : { @@ -1799,6 +1912,24 @@ } } ] }, + "TicketItem" : { + "allOf" : [ { + "$ref" : "#/definitions/Item" + }, { + "type" : "object", + "properties" : { + "section" : { + "type" : "string" + }, + "row" : { + "type" : "string" + }, + "seat" : { + "type" : "string" + } + } + } ] + }, "TicketItemGroup" : { "allOf" : [ { "$ref" : "#/definitions/ItemGroup" @@ -1863,6 +1994,11 @@ "items" : { "$ref" : "#/definitions/UpdateProductRequest" } + }, + "cartHoldTimeSec" : { + "type" : "integer", + "format" : "int32", + "readOnly" : true } } }, diff --git a/_data/orgs/commerce-api/v2-internal/api.json b/_data/orgs/commerce-api/v2-internal/api.json index 4f301b7e9..c3ef1c8ae 100644 --- a/_data/orgs/commerce-api/v2-internal/api.json +++ b/_data/orgs/commerce-api/v2-internal/api.json @@ -1500,6 +1500,64 @@ "AttributeRelationships": { "type": "object" }, + "AvdTicketItemDetailMetadata": { + "allOf": [ + { + "$ref": "#/definitions/Metadata" + }, + { + "type": "object", + "properties": { + "token": { + "type": "string" + }, + "price": { + "$ref": "#/definitions/AvdTicketItemDetailMetadataPrice" + } + } + } + ] + }, + "AvdTicketItemDetailMetadataPrice": { + "type": "object", + "properties": { + "amount": { + "type": "string" + }, + "currency": { + "type": "string" + } + } + }, + "Buyer": { + "type": "object", + "properties": { + "firstName": { + "type": "string" + }, + "lastName": { + "type": "string" + }, + "email": { + "type": "string" + }, + "phoneNumber": { + "type": "string" + }, + "streetAddress": { + "type": "string" + }, + "city": { + "type": "string" + }, + "state": { + "type": "string" + }, + "postalCode": { + "type": "string" + } + } + }, "Cart": { "type": "object", "properties": { @@ -1698,6 +1756,17 @@ "sendRedemptionEmail": { "type": "boolean", "default": false + }, + "buyerInfo": { + "$ref": "#/definitions/Buyer" + }, + "paymentInfo": { + "$ref": "#/definitions/Payment" + }, + "cartHoldTimeSec": { + "type": "integer", + "format": "int32", + "readOnly": true } } }, @@ -1712,6 +1781,10 @@ "items": { "$ref": "#/definitions/AddProductRequest" } + }, + "cartHoldTimeSec": { + "type": "integer", + "format": "int32" } } }, @@ -2038,6 +2111,17 @@ } } }, + "Item": { + "type": "object", + "properties": { + "token": { + "type": "string" + }, + "price": { + "$ref": "#/definitions/Money" + } + } + }, "ItemDetail": { "type": "object", "discriminator": "type", @@ -2123,6 +2207,18 @@ } } }, + "OfferAttribute": { + "type": "object", + "properties": { + "type": { + "type": "string" + }, + "id": { + "type": "integer", + "format": "int32" + } + } + }, "OfferFilter": { "type": "object", "properties": { @@ -2152,8 +2248,24 @@ "password": { "type": "string" }, + "items": { + "type": "array", + "items": { + "$ref": "#/definitions/Item" + } + }, + "attributes": { + "type": "array", + "items": { + "$ref": "#/definitions/OfferAttribute" + } + }, "offer": { "type": "string" + }, + "qty": { + "type": "integer", + "format": "int32" } } }, @@ -2260,17 +2372,11 @@ "Payment": { "type": "object", "properties": { - "id": { - "type": "string" - }, - "paymentType": { + "invoice": { "type": "string" }, - "amount": { - "type": "string" - }, - "currency": { - "type": "string" + "totalAmount": { + "$ref": "#/definitions/PaymentAmount" } } }, @@ -2628,6 +2734,11 @@ "pollingCallbackUrl": { "type": "string" }, + "cartHoldTimeSec": { + "type": "integer", + "format": "int32", + "readOnly": true + }, "deliveries": { "type": "array", "items": { @@ -2642,6 +2753,11 @@ "pollingCallbackUrl": { "type": "string" }, + "cartHoldTimeSec": { + "type": "integer", + "format": "int32", + "readOnly": true + }, "payments": { "type": "array", "items": { @@ -2735,6 +2851,27 @@ } ] }, + "TicketItem": { + "allOf": [ + { + "$ref": "#/definitions/Item" + }, + { + "type": "object", + "properties": { + "section": { + "type": "string" + }, + "row": { + "type": "string" + }, + "seat": { + "type": "string" + } + } + } + ] + }, "TicketItemGroup": { "allOf": [ { @@ -2805,6 +2942,11 @@ "items": { "$ref": "#/definitions/UpdateProductRequest" } + }, + "cartHoldTimeSec": { + "type": "integer", + "format": "int32", + "readOnly": true } } }, diff --git a/_data/orgs/discovery-api/v2/api.json b/_data/orgs/discovery-api/v2/api.json index 273429b92..c67d9f6c6 100644 --- a/_data/orgs/discovery-api/v2/api.json +++ b/_data/orgs/discovery-api/v2/api.json @@ -673,7 +673,7 @@ "description" : "Radius of the area in which we want to search for events.", "required" : false, "type" : "string", - "default" : "50", + "default" : "", "pattern" : "^\\s*$|^0*1?\\d{1,4}$", "x-example" : "" }, { @@ -1084,7 +1084,7 @@ "description" : "Radius of the area in which we want to search for events.", "required" : false, "type" : "string", - "default" : "50", + "default" : "", "pattern" : "^\\s*$|^0*1?\\d{1,4}$", "x-example" : "" }, { @@ -1525,6 +1525,9 @@ "type" : "boolean", "default" : false }, + "rangeDurationField" : { + "$ref" : "#/definitions/DurationField" + }, "durationField" : { "$ref" : "#/definitions/DurationField" }, @@ -1532,9 +1535,6 @@ "type" : "integer", "format" : "int32" }, - "rangeDurationField" : { - "$ref" : "#/definitions/DurationField" - }, "maximumValue" : { "type" : "integer", "format" : "int32" diff --git a/_layouts/widget-map.html b/_layouts/widget-map.html index 428acb1f6..1649b9c3b 100644 --- a/_layouts/widget-map.html +++ b/_layouts/widget-map.html @@ -37,7 +37,7 @@