Skip to content

Commit f48e87a

Browse files
committed
fixes
1 parent da2b3db commit f48e87a

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

src/domain/field.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const FieldVisibilityType = z.enum(["details-only", "hidden", "normal", "retired
77
const FieldValuesType = z.enum(["list", "search", "none", "auto-list"]);
88

99
export const FieldBaseType = z.enum([
10+
"type/*",
1011
"type/field-values-unsupported",
1112
"type/fingerprint-unsupported",
1213
"type/Large",
@@ -42,6 +43,7 @@ export const FieldBaseType = z.enum([
4243
"type/MySQLEnum",
4344
"type/PostgresEnum",
4445
"type/PostgresBitString",
46+
"type/IPAddress",
4547
"type/Collection",
4648
"type/Dictionary",
4749
"type/Array",

tests/e2e/seed/ids.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ export const E2E_DASHCARDS = {
2626
} as const;
2727

2828
export const E2E_TABLES = {
29-
CUSTOMERS: 169,
30-
DAILY_SALES: 168,
31-
ORDER_ITEMS: 173,
32-
ORDER_SUMMARY: 170,
33-
ORDERS: 174,
34-
PRODUCTS: 172,
35-
REVIEWS: 171,
29+
CUSTOMERS: 170,
30+
DAILY_SALES: 169,
31+
ORDER_ITEMS: 174,
32+
ORDER_SUMMARY: 171,
33+
ORDERS: 175,
34+
PRODUCTS: 173,
35+
REVIEWS: 172,
3636
} as const;
3737

3838
export const E2E_FIELDS = {
39-
ORDERS_ID: 1689,
39+
ORDERS_ID: 1702,
4040
} as const;

0 commit comments

Comments
 (0)