25 lines
1016 B
TypeScript
25 lines
1016 B
TypeScript
/**
|
|
* will store and maintain all queries for datamart here.
|
|
* this way they can all be easily maintained and updated as we progress with the changes and updates to v3
|
|
*
|
|
* for options when putting them into the docs we will show examples on how to pull this
|
|
*/
|
|
|
|
export const datamartData = [
|
|
{
|
|
name: "Active articles",
|
|
endpoint: "activeArticles",
|
|
description: "returns all active articles for the server with custom data",
|
|
options: "", // set as a string and each item will be seperated by a , this way we can split it later in the excel file.
|
|
optionsRequired: false,
|
|
},
|
|
{
|
|
name: "Delivery by date range",
|
|
endpoint: "deliveryByDateRange",
|
|
description: `Returns all Deliverys in selected date range IE: 1/1/${new Date(Date.now()).getFullYear()} to 1/31/${new Date(Date.now()).getFullYear()}`,
|
|
options: "startDate,endDate", // set as a string and each item will be seperated by a , this way we can split it later in the excel file.
|
|
optionsRequired: true,
|
|
howManyOptionsRequired: 2,
|
|
},
|
|
];
|