Work on CRUD v2 API calls. Added sessions without files report.

This commit is contained in:
Scott Idem
2024-08-14 14:05:48 -04:00
parent efedc88ade
commit 0d48362529
7 changed files with 566 additions and 84 deletions

View File

@@ -8,6 +8,8 @@ import { get_object } from './api_get_object'; // Exported at the end of this fi
import { patch_object } from './api_patch_object'; // Exported at the end of this file
import { post_object } from './api_post_object'; // Exported at the end of this file
import { get_ae_obj_li_for_obj_id_crud_v2 } from '$lib/api_get__crud_obj_li_v2';
// Updated 2023-12-01
export let get_ae_obj_id_crud = async function get_ae_obj_id_crud(
@@ -25,7 +27,7 @@ export let get_ae_obj_id_crud = async function get_ae_obj_id_crud(
offset=0,
data={},
// key,
jwt=null,
// jwt=null,
headers={},
params={},
timeout=25000,
@@ -45,7 +47,7 @@ export let get_ae_obj_id_crud = async function get_ae_obj_id_crud(
offset?: number,
data?: any,
// key: string,
jwt?: string,
// jwt?: string,
headers?: any,
params?: any,
timeout?: number,
@@ -1309,6 +1311,7 @@ export let send_email = async function send_email(
// }
let obj = {
get_ae_obj_li_for_obj_id_crud_v2: get_ae_obj_li_for_obj_id_crud_v2,
delete_object: delete_object,
get_object: get_object,
patch_object: patch_object,