More and more code removal and clean up

This commit is contained in:
Scott Idem
2026-03-24 10:42:40 -04:00
parent 0bc71391fc
commit 8e61bd0ba1
37 changed files with 144 additions and 496 deletions

View File

@@ -15,7 +15,7 @@ interface GetDataStoreV3Params {
* Uses hierarchical fallback logic (Specific -> Account -> Global)
* Path: GET /v3/data_store/code/{code}
*/
export async function get_data_store_v3({
export async function get_data_store({
api_cfg,
code,
for_type = null,
@@ -24,7 +24,7 @@ export async function get_data_store_v3({
log_lvl = 0
}: GetDataStoreV3Params): Promise<any> {
if (log_lvl) {
console.log(`*** get_data_store_v3() *** code=${code} no_account_id=${no_account_id}`);
console.log(`*** get_data_store() *** code=${code} no_account_id=${no_account_id}`);
}
const endpoint = `/v3/data_store/code/${code}`;