@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 CHANGED
@@ -2,8 +2,8 @@
2
2
  interface IndexDef {
3
3
  readonly columns: readonly string[];
4
4
  readonly name?: string;
5
- readonly using?: string;
6
- readonly config?: Record<string, unknown>;
5
+ readonly type?: string;
6
+ readonly options?: Record<string, unknown>;
7
7
  }
8
8
  interface ForeignKeyDefaultsState {
9
9
  readonly constraint: boolean;
@@ -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,KAAA;EAAA,SACA,MAAA,GAAS,MAAA;AAAA;AAAA,UAGH,uBAAA;EAAA,SACN,UAAA;EAAA,SACA,KAAA;AAAA"}
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma-next/contract-authoring",
3
- "version": "0.5.0-dev.81",
3
+ "version": "0.5.0-dev.82",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -1,8 +1,8 @@
1
1
  export interface IndexDef {
2
2
  readonly columns: readonly string[];
3
3
  readonly name?: string;
4
- readonly using?: string;
5
- readonly config?: Record<string, unknown>;
4
+ readonly type?: string;
5
+ readonly options?: Record<string, unknown>;
6
6
  }
7
7
 
8
8
  export interface ForeignKeyDefaultsState {