Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

17.8 #1051

Merged
merged 6 commits into from
Aug 16, 2023
Merged

17.8 #1051

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _static/js/versionlinks.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//CHANGE VERSION BEFORE NEW RELEASE
if(document.location.pathname.indexOf('/en/latest') === 0) {
document.querySelector('.rst-current-version').innerHTML = document.querySelector('.rst-current-version').innerHTML.replace('v: latest', 'v: latest (17.7)')
document.querySelector('.rst-current-version').innerHTML = document.querySelector('.rst-current-version').innerHTML.replace('v: latest', 'v: latest (17.8)')
}

if(document.querySelector('.injected')){
document.querySelector('.injected > dl:nth-child(1) > dd:nth-child(2) > a').innerText = 'latest (17.7)';
document.querySelector('.injected > dl:nth-child(1) > dd:nth-child(2) > a').innerText = 'latest (17.8)';
} else {
let observer = new MutationObserver(() => {
if (document.querySelector('.injected')) {
document.querySelector('.injected > dl:nth-child(1) > dd:nth-child(2) > a').innerText = 'latest (17.7)';
document.querySelector('.injected > dl:nth-child(1) > dd:nth-child(2) > a').innerText = 'latest (17.8)';
observer.disconnect();
}
});
Expand Down
2 changes: 1 addition & 1 deletion _templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
activeMenu.classList.add('active', 'current');
}
if(topbarLinks) {
topbarLinks[2].innerHTML += '<div class="Badge blue" style="display: inline-block;"><div class="BadgeInner"><div class="BadgeText">BETA</div></div></div>'
topbarLinks[2].innerHTML += '<div class="Badge blue" style="display: inline-block;"><div class="BadgeInner"><div class="BadgeText">NEW</div></div></div>'
topbarLinks[6].innerHTML += '<div class="Badge gray" style="display: inline-block;"><div class="BadgeInner"><div class="BadgeText">OLD</div></div></div>'
}
let breadCrumbs = document.querySelector('.wy-breadcrumbs');
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
# built documents.
#
# The short X.Y version.
version = u'17.7'
version = u'17.8'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
10 changes: 4 additions & 6 deletions platform/authorized_api/modules/public_v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,10 @@ components:
type: string
enum:
- analytics
- piwik
- consent_manager
- customer_data_platform
- tag_manager
- administration
- audience_manager
UserId:
in: path
name: user_id
Expand All @@ -255,8 +254,8 @@ components:
- status: "404"
code: module.not-exists
title: Module 'personalization' does not exist. Available
modules are [analytics, piwik, consent_manager,
tag_manager, administration, audience_manager]
modules are [analytics, consent_manager, customer_data_platform,
tag_manager, administration]
NotFoundUser:
description: Not Found
content:
Expand Down Expand Up @@ -390,11 +389,10 @@ components:
type: string
enum:
- analytics
- piwik
- consent_manager
- customer_data_platform
- tag_manager
- administration
- audience_manager
description: ID of a module
UserIdentifier:
type: object
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"title": "Ecommerce Add to cart",
"description": "Ecommerce Add to cart create request",
"type": "object",
"properties": {
"data": {
"title": "JSON:API 1.0 request data",
"type": "object",
"properties": {
"id": {
"$ref": "../../tag_types.json#/definitions/tag_identifier"
},
"type": {
"$ref": "../../tag_types.json#/definitions/tag_resource_type"
},
"attributes": {
"description": "Ecommerce Add to cart attributes",
"type": "object",
"properties": {
"disable_in_debug_mode": {
"$ref": "../../tag_attributes.json#/definitions/disable_in_debug_mode"
},
"is_active": {
"$ref": "../../tag_attributes.json#/definitions/is_active"
},
"priority": {
"$ref": "../../tag_attributes.json#/definitions/priority"
},
"name": {
"$ref": "../../tag_attributes.json#/definitions/name"
},
"respect_visitors_privacy": {
"$ref": "../../tag_attributes.json#/definitions/respect_visitors_privacy"
},
"scheduler": {
"$ref": "../../tag_attributes.json#/definitions/scheduler"
},
"consent_type": {
"$ref": "../../tag_attributes.json#/definitions/consent_type"
},
"template": {
"$ref": "../../tag_templates/ecommerce/ecommerce_add_to_cart_attributes.json#/definitions/template"
},
"template_options": {
"$ref": "../../tag_templates/ecommerce/ecommerce_add_to_cart_attributes.json#/definitions/template_options"
}
},
"additionalProperties": false,
"required": [
"name",
"template",
"template_options"
]
},
"relationships": {
"allOf": [
{
"$ref": "../../tag_types.json#/definitions/relationships_description"
},
{
"type": "object",
"properties": {
"triggers": {
"$ref": "../../tag_types.json#/definitions/trigger_relationship"
}
},
"additionalProperties": false,
"required": [
"triggers"
]
}
]
}
},
"additionalProperties": false,
"required": [
"type",
"attributes"
]
}
},
"additionalProperties": false,
"required": [
"data"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"title": "Ecommerce Order",
"description": "Ecommerce Order create request",
"type": "object",
"properties": {
"data": {
"title": "JSON:API 1.0 request data",
"type": "object",
"properties": {
"id": {
"$ref": "../../tag_types.json#/definitions/tag_identifier"
},
"type": {
"$ref": "../../tag_types.json#/definitions/tag_resource_type"
},
"attributes": {
"description": "Ecommerce Order attributes",
"type": "object",
"properties": {
"disable_in_debug_mode": {
"$ref": "../../tag_attributes.json#/definitions/disable_in_debug_mode"
},
"is_active": {
"$ref": "../../tag_attributes.json#/definitions/is_active"
},
"priority": {
"$ref": "../../tag_attributes.json#/definitions/priority"
},
"name": {
"$ref": "../../tag_attributes.json#/definitions/name"
},
"respect_visitors_privacy": {
"$ref": "../../tag_attributes.json#/definitions/respect_visitors_privacy"
},
"scheduler": {
"$ref": "../../tag_attributes.json#/definitions/scheduler"
},
"consent_type": {
"$ref": "../../tag_attributes.json#/definitions/consent_type"
},
"template": {
"$ref": "../../tag_templates/ecommerce/ecommerce_order_attributes.json#/definitions/template"
},
"template_options": {
"$ref": "../../tag_templates/ecommerce/ecommerce_order_attributes.json#/definitions/template_options"
}
},
"additionalProperties": false,
"required": [
"name",
"template",
"template_options"
]
},
"relationships": {
"allOf": [
{
"$ref": "../../tag_types.json#/definitions/relationships_description"
},
{
"type": "object",
"properties": {
"triggers": {
"$ref": "../../tag_types.json#/definitions/trigger_relationship"
}
},
"additionalProperties": false,
"required": [
"triggers"
]
}
]
}
},
"additionalProperties": false,
"required": [
"type",
"attributes"
]
}
},
"additionalProperties": false,
"required": [
"data"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"title": "Ecommerce Product detail view",
"description": "Ecommerce Product detail view create request",
"type": "object",
"properties": {
"data": {
"title": "JSON:API 1.0 request data",
"type": "object",
"properties": {
"id": {
"$ref": "../../tag_types.json#/definitions/tag_identifier"
},
"type": {
"$ref": "../../tag_types.json#/definitions/tag_resource_type"
},
"attributes": {
"description": "Ecommerce Product detail view attributes",
"type": "object",
"properties": {
"disable_in_debug_mode": {
"$ref": "../../tag_attributes.json#/definitions/disable_in_debug_mode"
},
"is_active": {
"$ref": "../../tag_attributes.json#/definitions/is_active"
},
"priority": {
"$ref": "../../tag_attributes.json#/definitions/priority"
},
"name": {
"$ref": "../../tag_attributes.json#/definitions/name"
},
"respect_visitors_privacy": {
"$ref": "../../tag_attributes.json#/definitions/respect_visitors_privacy"
},
"scheduler": {
"$ref": "../../tag_attributes.json#/definitions/scheduler"
},
"consent_type": {
"$ref": "../../tag_attributes.json#/definitions/consent_type"
},
"template": {
"$ref": "../../tag_templates/ecommerce/ecommerce_product_detail_view_attributes.json#/definitions/template"
},
"template_options": {
"$ref": "../../tag_templates/ecommerce/ecommerce_product_detail_view_attributes.json#/definitions/template_options"
}
},
"additionalProperties": false,
"required": [
"name",
"template",
"template_options"
]
},
"relationships": {
"allOf": [
{
"$ref": "../../tag_types.json#/definitions/relationships_description"
},
{
"type": "object",
"properties": {
"triggers": {
"$ref": "../../tag_types.json#/definitions/trigger_relationship"
}
},
"additionalProperties": false,
"required": [
"triggers"
]
}
]
}
},
"additionalProperties": false,
"required": [
"type",
"attributes"
]
}
},
"additionalProperties": false,
"required": [
"data"
]
}
Loading
Loading