Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions skills/wix-app/references/dashboard-page/DASHBOARD_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

Complete reference for the `@wix/dashboard` host module.

## Package

The dashboard host module is provided by **`@wix/dashboard`** — ensure it is in your dependencies.

Import pattern:
```typescript
import { dashboard } from '@wix/dashboard';
```

> ⚠️ **`@wix/dashboard-sdk` is deprecated and must NOT be used.** It has a different API (flat named exports, no `dashboard` namespace object) and is no longer maintained. Always import from `@wix/dashboard`.

## navigate()

Host Module '@wix/dashboard' 'navigate()' method for navigating between dashboard pages.
Expand Down
2 changes: 2 additions & 0 deletions skills/wix-app/references/data-collection/WIX_DATA.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ If you see any method with `DataItem` in the name, it is **wrong**.

### WixDataItem

> **Not importable.** `WixDataItem` is not exported from `@wix/data` — `import type { WixDataItem } from "@wix/data"` will fail. Define your own interface based on the shape below.

```ts
interface WixDataItem {
_id: string;
Expand Down
Loading