@@ -68,7 +68,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
6868 description : 'Track daily sales performance with AOV and AOS metrics' ,
6969 category : 'Sales Analytics' ,
7070 parameters : [
71- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
71+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
7272 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
7373 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
7474 ] ,
@@ -86,7 +86,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
8686 parameters : [
8787 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
8888 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
89- { name : 'siteId' , description : 'Optional site ID ' , type : 'string' } ,
89+ { name : 'siteId' , description : 'Optional natural site id ' , type : 'string' } ,
9090 ] ,
9191 buildSql ( params ) {
9292 const from = getDateLiteral ( params , 'from' ) ;
@@ -101,7 +101,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
101101 description : 'Analyze OCAPI request volume and response latency' ,
102102 category : 'Technical Analytics' ,
103103 parameters : [
104- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
104+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
105105 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
106106 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
107107 ] ,
@@ -117,7 +117,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
117117 description : 'Identify top selling products across channels' ,
118118 category : 'Product Analytics' ,
119119 parameters : [
120- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
120+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
121121 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
122122 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
123123 ] ,
@@ -133,7 +133,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
133133 description : 'Analyze frequently co-purchased products' ,
134134 category : 'Product Analytics' ,
135135 parameters : [
136- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
136+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
137137 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
138138 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
139139 ] ,
@@ -163,7 +163,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
163163 description : 'Identify search terms driving revenue and conversion' ,
164164 category : 'Search Analytics' ,
165165 parameters : [
166- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
166+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
167167 { name : 'hasResults' , description : 'Filter successful/unsuccessful searches' , type : 'boolean' , required : true } ,
168168 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
169169 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
@@ -181,7 +181,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
181181 description : 'Track payment method adoption and transaction metrics' ,
182182 category : 'Payment Analytics' ,
183183 parameters : [
184- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
184+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
185185 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
186186 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
187187 ] ,
@@ -197,7 +197,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
197197 description : 'Track customer registration trends by date and device' ,
198198 category : 'Customer Analytics' ,
199199 parameters : [
200- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
200+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
201201 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
202202 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
203203 ] ,
@@ -213,7 +213,7 @@ export const CIP_REPORTS: CipReportDefinition[] = [
213213 description : 'Identify top traffic referrers and visit share' ,
214214 category : 'Traffic Analytics' ,
215215 parameters : [
216- { name : 'siteId' , description : 'Site ID ' , type : 'string' , required : true } ,
216+ { name : 'siteId' , description : 'Natural site id ' , type : 'string' , required : true } ,
217217 { name : 'from' , description : 'Inclusive start date (YYYY-MM-DD)' , type : 'date' , required : true } ,
218218 { name : 'to' , description : 'Inclusive end date (YYYY-MM-DD)' , type : 'date' , required : true } ,
219219 { name : 'limit' , description : 'Max rows (1-500)' , type : 'number' , min : 1 , max : 500 } ,
0 commit comments