feat(v3-api): rollout 'view' parameter across event library modules

This commit is contained in:
Scott Idem
2026-01-29 18:00:15 -05:00
parent 9551825b3f
commit 35114e5e58
11 changed files with 64 additions and 12 deletions

View File

@@ -85,6 +85,7 @@ export async function load_ae_obj_li__event_location({
inc_all_file_li = false,
enabled = 'enabled',
hidden = 'not_hidden',
view = 'default',
limit = 100,
offset = 0,
order_by_li = [
@@ -104,6 +105,7 @@ export async function load_ae_obj_li__event_location({
inc_all_file_li?: boolean;
enabled?: 'enabled' | 'all' | 'not_enabled';
hidden?: 'hidden' | 'all' | 'not_hidden';
view?: string;
limit?: number;
offset?: number;
order_by_li?: any;
@@ -122,6 +124,7 @@ export async function load_ae_obj_li__event_location({
for_obj_id,
enabled,
hidden,
view,
limit,
offset,
order_by_li,
@@ -342,6 +345,7 @@ export async function search__event_location({
qry_str = '',
enabled = 'enabled',
hidden = 'not_hidden',
view = 'default',
limit = 25,
offset = 0,
order_by_li = [
@@ -358,6 +362,7 @@ export async function search__event_location({
qry_str?: string;
enabled?: 'enabled' | 'all' | 'not_enabled';
hidden?: 'hidden' | 'all' | 'not_hidden';
view?: string;
limit?: number;
offset?: number;
order_by_li?: any;
@@ -384,6 +389,7 @@ export async function search__event_location({
obj_type: 'event_location',
search_query,
order_by_li,
view,
limit,
offset,
log_lvl