# `PaperTiger.Store.BankAccounts`
[🔗](https://github.com/EnaiaInc/paper_tiger/blob/v1.2.1/lib/paper_tiger/store/bank_accounts.ex#L1)

ETS-backed storage for BankAccount resources.

Uses the shared store pattern via `use PaperTiger.Store` which provides:
- GenServer wraps ETS table
- Reads go directly to ETS (concurrent, fast)
- Writes go through GenServer (serialized, safe)

## Architecture

- **ETS Table**: `:paper_tiger_bank_accounts` (public, read_concurrency: true)
- **GenServer**: Serializes writes, handles initialization
- **Shared Implementation**: All CRUD operations via PaperTiger.Store

## Examples

    # Direct read (no GenServer bottleneck)
    {:ok, bank_account} = PaperTiger.Store.BankAccounts.get("ba_123")

    # Serialized write
    bank_account = %{id: "ba_123", customer: "cus_123", ...}
    {:ok, bank_account} = PaperTiger.Store.BankAccounts.insert(bank_account)

    # Query helpers (direct ETS access)
    bank_accounts = PaperTiger.Store.BankAccounts.find_by_customer("cus_123")

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

# `clear`

```elixir
@spec clear() :: :ok
```

Clears all bank_accounts from the store (all namespaces).

**Serialized write** - goes through GenServer.

Useful for test cleanup. Note: This clears ALL data, not just
the current namespace. For namespace-specific cleanup, use
`clear_namespace/1`.

# `clear_namespace`

```elixir
@spec clear_namespace(pid() | :global | {pid() | :global, String.t()}) :: :ok
```

Clears all bank_accounts for a specific namespace.

Used by `PaperTiger.Test` to clean up after each test.

# `count`

```elixir
@spec count() :: non_neg_integer()
```

Counts total bank_accounts in current namespace.

**Direct ETS access** - does not go through GenServer.

# `delete`

```elixir
@spec delete(String.t()) :: :ok
```

Deletes a bank_account from the store.

**Serialized write** - goes through GenServer.
Data is scoped to the current test namespace.

# `find_by_customer`

```elixir
@spec find_by_customer(String.t()) :: [map()]
```

Finds bank accounts by customer ID.

**Direct ETS access** - does not go through GenServer.

# `get`

```elixir
@spec get(String.t()) :: {:ok, map()} | {:error, :not_found}
```

Retrieves a bank_account by ID.

**Direct ETS access** - does not go through GenServer.
Data is scoped to the current test namespace.

# `insert`

```elixir
@spec insert(map()) :: {:ok, map()}
```

Inserts a bank_account into the store.

**Serialized write** - goes through GenServer to prevent race conditions.
Data is scoped to the current test namespace.

# `list`

```elixir
@spec list(keyword() | map()) :: PaperTiger.List.t()
```

Lists all bank_accounts with optional pagination.

**Direct ETS access** - does not go through GenServer.
Data is scoped to the current test namespace.

## Options

- `:limit` - Number of items (default: 10, max: 100)
- `:starting_after` - Cursor for pagination
- `:ending_before` - Reverse cursor

# `list_namespace`

```elixir
@spec list_namespace(pid() | :global | {pid() | :global, String.t()}) :: [map()]
```

Returns all items in a specific namespace.

Useful for debugging test isolation.

# `prefix`

```elixir
@spec prefix() :: String.t() | nil
```

Returns the ID prefix for this resource.

# `start_link`

```elixir
@spec start_link(keyword()) :: GenServer.on_start()
```

Starts the bank_account store GenServer.

# `table_name`

```elixir
@spec table_name() :: atom()
```

Returns the ETS table name for this store.

# `update`

```elixir
@spec update(map()) :: {:ok, map()}
```

Updates a bank_account in the store.

**Serialized write** - goes through GenServer.
Data is scoped to the current test namespace.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
