Moving things to SK. Added events and sessions.

This commit is contained in:
Scott Idem
2024-05-24 19:02:52 -04:00
parent d9ff625db6
commit 359c147167
6 changed files with 397 additions and 19 deletions

View File

@@ -195,8 +195,8 @@ export let get_ae_obj_li_for_obj_id_crud = async function get_ae_obj_li_for_obj_
order_by_li=null,
limit=999999,
offset=0,
key,
jwt=null,
// key,
// jwt=null,
headers={},
params_json=null, // NOTE: This is a JSON object that needs to be safely converted to a string for the params. This is used for the API endpoint. Example: { "fulltext_search": { "default_qry_str": "Search string for default", "address_default_qry_str": "Search string for address", "contact_1_default_qry_str": "Search string for contact_1" } }
// json_obj=null, // NOTE: This is a JSON object that needs to be safely converted to a string for the params. This is used for the search endpoint.
@@ -210,18 +210,18 @@ export let get_ae_obj_li_for_obj_id_crud = async function get_ae_obj_li_for_obj_
for_obj_id?: string,
use_alt_table?: boolean,
use_alt_base?: boolean,
inc?: any,
inc?: key_val
enabled?: string,
hidden?: string,
order_by_li?: any,
limit?: number,
offset?: number,
key: string,
jwt?: string,
// key: string,
// jwt?: string,
headers?: any,
params_json?: any,
// json_obj?: any,
params?: any,
params?: key_val,
return_meta?: boolean,
log_lvl?: number
}