create-bluecopa-react-app 1.0.42 → 1.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/latest/.env.example +12 -2
- package/templates/latest/Agent.md +9 -756
- package/templates/latest/CLAUDE.md +43 -4
- package/templates/latest/app/app.tsx +63 -28
- package/templates/latest/app/components/error-boundary.tsx +178 -0
- package/templates/latest/app/constants/index.ts +7 -0
- package/templates/latest/app/contexts/app-context.tsx +20 -2
- package/templates/latest/app/single-spa.tsx +5 -0
- package/templates/latest/app/types/index.ts +29 -0
- package/templates/latest/app/utils/ag-grid-license.ts +8 -2
- package/templates/latest/package-lock.json +2784 -636
- package/templates/latest/package.json +13 -5
- package/templates/latest/pnpm-workspace.yaml +6 -0
- package/templates/latest/vite.config.ts +2 -2
package/package.json
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# API base URL for the Bluecopa platform
|
|
2
|
-
VITE_BLUECOPA_API_URL=https://
|
|
2
|
+
VITE_BLUECOPA_API_URL=https://develop.bluecopa.com/api/v1
|
|
3
3
|
|
|
4
4
|
# Workspace ID for standalone development
|
|
5
5
|
VITE_BLUECOPA_WORKSPACE_ID=YOUR_WORKSPACE_ID
|
|
6
6
|
|
|
7
|
-
#
|
|
7
|
+
# ─── Auth / identity (standalone dev) ───────────────────────────────
|
|
8
|
+
VITE_BLUECOPA_API_TOKEN=
|
|
9
|
+
VITE_BLUECOPA_USER_ID=
|
|
10
|
+
|
|
11
|
+
# ─── AG Grid Enterprise license ─────────────────────────────────────
|
|
8
12
|
VITE_AG_GRID_LICENSE_KEY=
|
|
13
|
+
|
|
14
|
+
# ─── Solution context (Input Table V2 / deployed solutions) ─────────
|
|
15
|
+
# Flow through to the x-bluecopa-solution-* SDK headers.
|
|
16
|
+
VITE_BLUECOPA_SOLUTION_ID=
|
|
17
|
+
VITE_BLUECOPA_SOLUTION_BRANCH=main
|
|
18
|
+
VITE_BLUECOPA_SOLUTION_BRANCH_TYPE=REMOTE
|