feat(v3-api): rollout 'view' parameter across event library modules
This commit is contained in:
@@ -214,6 +214,7 @@ export async function load_ae_obj_li__exhibit({
|
||||
event_id,
|
||||
enabled = 'enabled',
|
||||
hidden = 'not_hidden',
|
||||
view = 'default',
|
||||
limit = 100,
|
||||
offset = 0,
|
||||
order_by_li = [
|
||||
@@ -229,6 +230,7 @@ export async function load_ae_obj_li__exhibit({
|
||||
event_id: string;
|
||||
enabled?: 'enabled' | 'all' | 'not_enabled';
|
||||
hidden?: 'hidden' | 'all' | 'not_hidden';
|
||||
view?: string;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
order_by_li?: any;
|
||||
@@ -247,6 +249,7 @@ export async function load_ae_obj_li__exhibit({
|
||||
for_obj_id: event_id,
|
||||
enabled,
|
||||
hidden,
|
||||
view,
|
||||
limit,
|
||||
offset,
|
||||
order_by_li,
|
||||
@@ -339,6 +342,7 @@ export async function load_ae_obj_li__exhibit_tracking({
|
||||
exhibit_id,
|
||||
enabled = 'enabled',
|
||||
hidden = 'all',
|
||||
view = 'default',
|
||||
limit = 100,
|
||||
offset = 0,
|
||||
order_by_li = [
|
||||
@@ -353,6 +357,7 @@ export async function load_ae_obj_li__exhibit_tracking({
|
||||
exhibit_id: string;
|
||||
enabled?: 'enabled' | 'all' | 'not_enabled';
|
||||
hidden?: 'hidden' | 'all' | 'not_hidden';
|
||||
view?: string;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
order_by_li?: any;
|
||||
@@ -367,6 +372,7 @@ export async function load_ae_obj_li__exhibit_tracking({
|
||||
for_obj_id: exhibit_id,
|
||||
enabled,
|
||||
hidden,
|
||||
view,
|
||||
limit,
|
||||
offset,
|
||||
order_by_li,
|
||||
@@ -523,6 +529,7 @@ export async function search__exhibit_tracking({
|
||||
fulltext_search_qry_str = null,
|
||||
enabled = 'enabled',
|
||||
hidden = 'all',
|
||||
view = 'default',
|
||||
order_by_li = { created_on: 'DESC' },
|
||||
limit = 100,
|
||||
offset = 0,
|
||||
@@ -533,6 +540,7 @@ export async function search__exhibit_tracking({
|
||||
fulltext_search_qry_str?: string | null;
|
||||
enabled?: 'enabled' | 'all' | 'not_enabled';
|
||||
hidden?: 'hidden' | 'all' | 'not_hidden';
|
||||
view?: string;
|
||||
order_by_li?: any;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
@@ -570,6 +578,9 @@ export async function search__exhibit_tracking({
|
||||
for_obj_id: event_exhibit_id,
|
||||
search_query,
|
||||
params,
|
||||
enabled,
|
||||
hidden,
|
||||
view,
|
||||
order_by_li,
|
||||
limit,
|
||||
offset,
|
||||
@@ -611,6 +622,7 @@ export async function search__exhibit({
|
||||
fulltext_search_qry_str = null,
|
||||
enabled = 'enabled',
|
||||
hidden = 'not_hidden',
|
||||
view = 'default',
|
||||
order_by_li = { name: 'ASC' },
|
||||
limit = 100,
|
||||
offset = 0,
|
||||
@@ -621,6 +633,7 @@ export async function search__exhibit({
|
||||
fulltext_search_qry_str?: string | null;
|
||||
enabled?: 'enabled' | 'all' | 'not_enabled';
|
||||
hidden?: 'hidden' | 'all' | 'not_hidden';
|
||||
view?: string;
|
||||
order_by_li?: any;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
@@ -657,6 +670,9 @@ export async function search__exhibit({
|
||||
for_obj_id: event_id,
|
||||
search_query,
|
||||
params,
|
||||
enabled,
|
||||
hidden,
|
||||
view,
|
||||
order_by_li,
|
||||
limit,
|
||||
offset,
|
||||
|
||||
Reference in New Issue
Block a user