Skip to content

Commit a526891

Browse files
committed
chore: add reference tests
1 parent 6dc47b6 commit a526891

4 files changed

Lines changed: 682 additions & 4 deletions

File tree

packages/admin/src/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export interface ReferenceValue {
1818
type: "reference";
1919
projectId: string;
2020
configName: string;
21-
path: string;
21+
/** JSON path as array of keys/indices, e.g. ["settings", "threshold"] or ["items", 0, "name"] */
22+
path: (string | number)[];
2223
}
2324

2425
export type ConditionValue = LiteralValue | ReferenceValue;

packages/admin/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Auto-generated - do not edit manually
2-
export const VERSION = "1.0.1";
2+
export const VERSION = "1.0.3";
33
export const DEFAULT_AGENT = `replane-js-admin/${VERSION}`;

packages/test-suite/docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
x-replane-common: &replane-common
22
image: ghcr.io/replane-dev/replane:latest
3+
# build:
4+
# context: ../../../replane
5+
# dockerfile: Dockerfile
36
depends_on:
47
postgres:
58
condition: service_healthy

0 commit comments

Comments
 (0)