@secondlayer/subgraphs 3.19.0 → 3.19.2
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/dist/src/index.js +2 -2
- package/dist/src/index.js.map +3 -3
- package/dist/src/runtime/emitter.d.ts +13 -1
- package/dist/src/runtime/emitter.js +6 -3
- package/dist/src/runtime/emitter.js.map +3 -3
- package/dist/src/schema/index.js +2 -2
- package/dist/src/schema/index.js.map +3 -3
- package/dist/src/validate.js +2 -2
- package/dist/src/validate.js.map +3 -3
- package/package.json +1 -1
package/dist/src/index.js
CHANGED
|
@@ -26,7 +26,7 @@ var SubgraphTableSchema = z.object({
|
|
|
26
26
|
indexes: z.array(z.array(SqlIdentifierSchema)).optional(),
|
|
27
27
|
uniqueKeys: z.array(z.array(SqlIdentifierSchema)).optional(),
|
|
28
28
|
relations: z.array(z.object({
|
|
29
|
-
name:
|
|
29
|
+
name: SqlIdentifierSchema,
|
|
30
30
|
references: SqlIdentifierSchema,
|
|
31
31
|
fields: z.array(SqlIdentifierSchema).min(1),
|
|
32
32
|
referencedColumns: z.array(SqlIdentifierSchema).min(1)
|
|
@@ -4126,5 +4126,5 @@ export {
|
|
|
4126
4126
|
ByoBreakingChangeError
|
|
4127
4127
|
};
|
|
4128
4128
|
|
|
4129
|
-
//# debugId=
|
|
4129
|
+
//# debugId=3B1E439BDA4C0FCE64756E2164756E21
|
|
4130
4130
|
//# sourceMappingURL=index.js.map
|