@prisma-next/contract-authoring 0.5.0-dev.81 → 0.5.0-dev.82
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/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/package.json +1 -1
- package/src/descriptors.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
interface IndexDef {
|
|
3
3
|
readonly columns: readonly string[];
|
|
4
4
|
readonly name?: string;
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
5
|
+
readonly type?: string;
|
|
6
|
+
readonly options?: Record<string, unknown>;
|
|
7
7
|
}
|
|
8
8
|
interface ForeignKeyDefaultsState {
|
|
9
9
|
readonly constraint: boolean;
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/descriptors.ts"],"mappings":";UAAiB,QAAA;EAAA,SACN,OAAA;EAAA,SACA,IAAA;EAAA,SACA,
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/descriptors.ts"],"mappings":";UAAiB,QAAA;EAAA,SACN,OAAA;EAAA,SACA,IAAA;EAAA,SACA,IAAA;EAAA,SACA,OAAA,GAAU,MAAA;AAAA;AAAA,UAGJ,uBAAA;EAAA,SACN,UAAA;EAAA,SACA,KAAA;AAAA"}
|
package/package.json
CHANGED
package/src/descriptors.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export interface IndexDef {
|
|
2
2
|
readonly columns: readonly string[];
|
|
3
3
|
readonly name?: string;
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
4
|
+
readonly type?: string;
|
|
5
|
+
readonly options?: Record<string, unknown>;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export interface ForeignKeyDefaultsState {
|