This was a lot... things are mostly working again. The changing of id_random properties caused some problems. The hosted_file_hash_sha256 is not working? There are other issues as well... This will take some time.

This commit is contained in:
Scott Idem
2025-11-13 18:38:00 -05:00
parent a84d06a28d
commit e9a8f7df00
225 changed files with 488 additions and 1526 deletions

View File

@@ -2,13 +2,13 @@
// This is intended to be used with the Aether API. The goal is to just import all of the core functions and re-export them as a single module. This is to make it easier to import the functions into other modules.
// This needs to be cleaned up and ideally removed the need for Axios.
import type { key_val } from '$lib/ae_stores';
import type { key_val } from '$lib/stores/ae_stores';
import { delete_object } from './ae_api/api_delete_object'; // Exported at the end of this file
import { get_object } from './ae_api/api_get_object'; // Exported at the end of this file
import { patch_object } from './ae_api/api_patch_object'; // Exported at the end of this file
import { post_object } from './ae_api/api_post_object'; // Exported at the end of this file
import { delete_object } from '$lib/ae_api/api_delete_object'; // Exported at the end of this file
import { get_object } from '$lib/ae_api/api_get_object'; // Exported at the end of this file
import { patch_object } from '$lib/ae_api/api_patch_object'; // Exported at the end of this file
import { post_object } from '$lib/ae_api/api_post_object'; // Exported at the end of this file
import { get_ae_obj_id_crud } from '$lib/ae_api/api_get__crud_obj_id';