@prisma-next/contract-authoring 0.3.0-dev.8 → 0.3.0-dev.80
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/LICENSE +201 -0
- package/README.md +4 -1
- package/dist/index.d.mts +311 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +237 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +22 -14
- package/src/builder-state.ts +104 -8
- package/src/contract-builder.ts +27 -17
- package/src/index.ts +6 -1
- package/src/table-builder.ts +276 -36
- package/src/types.ts +16 -10
- package/dist/builder-state.d.ts +0 -60
- package/dist/builder-state.d.ts.map +0 -1
- package/dist/contract-builder.d.ts +0 -15
- package/dist/contract-builder.d.ts.map +0 -1
- package/dist/index.d.ts +0 -6
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -179
- package/dist/index.js.map +0 -1
- package/dist/model-builder.d.ts +0 -38
- package/dist/model-builder.d.ts.map +0 -1
- package/dist/table-builder.d.ts +0 -20
- package/dist/table-builder.d.ts.map +0 -1
- package/dist/types.d.ts +0 -46
- package/dist/types.d.ts.map +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [2026] [Prisma Data, Inc]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
CHANGED
|
@@ -12,8 +12,11 @@ This package provides generic builder primitives that can be composed with targe
|
|
|
12
12
|
|
|
13
13
|
- **Generic Builder Core**: Provides target-agnostic builder state types and builder classes (`TableBuilder`, `ModelBuilder`, `ContractBuilder`)
|
|
14
14
|
- **State Management**: Manages builder state for tables, columns, models, and relations without target-specific logic
|
|
15
|
+
- **Storage Type State**: Captures target-agnostic storage type entries and column `typeRef` metadata for family-specific composition
|
|
15
16
|
- **Type Helpers**: Provides generic type-level helpers for transforming builder states into contract structures
|
|
16
17
|
- **Composition Surface**: Enables target-family specific packages (e.g., `@prisma-next/sql-contract-ts`) to compose generic core with family-specific types
|
|
18
|
+
- **Defaults**: Reuses shared contract `ColumnDefault` for db-agnostic defaults (literal, function, and client-generated descriptors)
|
|
19
|
+
- **Foreign Keys Configuration**: Provides a `foreignKeys()` method on the base `ContractBuilder` to configure FK constraint and index emission behavior
|
|
17
20
|
|
|
18
21
|
## Package Status
|
|
19
22
|
|
|
@@ -33,7 +36,7 @@ This package was created in Phase 2 of the contract authoring extraction. It con
|
|
|
33
36
|
|
|
34
37
|
## Exports
|
|
35
38
|
|
|
36
|
-
- Builder state types: `ColumnBuilderState`, `TableBuilderState`, `ModelBuilderState`, `ContractBuilderState`, `RelationDefinition`, `ColumnBuilder`
|
|
39
|
+
- Builder state types: `ColumnBuilderState`, `TableBuilderState`, `ModelBuilderState`, `ContractBuilderState`, `ForeignKeysConfigState`, `RelationDefinition`, `ColumnBuilder`
|
|
37
40
|
- Builder classes: `TableBuilder`, `ModelBuilder`, `ContractBuilder`
|
|
38
41
|
- Type helpers: `BuildStorageColumn`, `BuildStorage`, `BuildModels`, `BuildRelations`, extract helpers, `Mutable`
|
|
39
42
|
- Factory function: `defineContract()` (generic)
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
import { ColumnDefault, ExecutionMutationDefaultValue } from "@prisma-next/contract/types";
|
|
2
|
+
import { TargetPackRef } from "@prisma-next/contract/framework-components";
|
|
3
|
+
|
|
4
|
+
//#region src/builder-state.d.ts
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Duplicated from sql-contract to avoid cross-layer dependency
|
|
8
|
+
* (framework authoring cannot depend on the SQL domain's contract package).
|
|
9
|
+
*/
|
|
10
|
+
type ReferentialAction = 'noAction' | 'restrict' | 'cascade' | 'setNull' | 'setDefault';
|
|
11
|
+
/**
|
|
12
|
+
* Column type descriptor containing both codec ID and native type.
|
|
13
|
+
* Used when defining columns with descriptor objects instead of string IDs.
|
|
14
|
+
*
|
|
15
|
+
* For parameterized types (e.g., `vector(1536)`), the `typeParams` field
|
|
16
|
+
* carries codec-owned parameters that affect both TypeScript type generation
|
|
17
|
+
* and native DDL output.
|
|
18
|
+
*/
|
|
19
|
+
type ColumnTypeDescriptor = {
|
|
20
|
+
readonly codecId: string;
|
|
21
|
+
readonly nativeType: string;
|
|
22
|
+
readonly typeParams?: Record<string, unknown>;
|
|
23
|
+
readonly typeRef?: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Base column properties shared by all column states.
|
|
27
|
+
*/
|
|
28
|
+
type ColumnBuilderStateBase<Name extends string, Type extends string> = {
|
|
29
|
+
readonly name: Name;
|
|
30
|
+
readonly type: Type;
|
|
31
|
+
readonly nativeType: string;
|
|
32
|
+
readonly typeParams?: Record<string, unknown>;
|
|
33
|
+
readonly typeRef?: string;
|
|
34
|
+
};
|
|
35
|
+
type StorageTypeInstanceState = {
|
|
36
|
+
readonly codecId: string;
|
|
37
|
+
readonly nativeType: string;
|
|
38
|
+
readonly typeParams: Record<string, unknown>;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Column builder state.
|
|
42
|
+
*
|
|
43
|
+
* Both nullable and non-nullable columns can define defaults to match database behavior.
|
|
44
|
+
*/
|
|
45
|
+
type ColumnBuilderState<Name extends string, Nullable extends boolean, Type extends string> = ColumnBuilderStateBase<Name, Type> & (Nullable extends true ? {
|
|
46
|
+
readonly nullable: true;
|
|
47
|
+
readonly default?: ColumnDefault;
|
|
48
|
+
} : {
|
|
49
|
+
readonly nullable: false;
|
|
50
|
+
readonly default?: ColumnDefault;
|
|
51
|
+
readonly executionDefault?: ExecutionMutationDefaultValue;
|
|
52
|
+
});
|
|
53
|
+
/**
|
|
54
|
+
* Unique constraint definition for table builder.
|
|
55
|
+
*/
|
|
56
|
+
interface UniqueConstraintDef {
|
|
57
|
+
readonly columns: readonly string[];
|
|
58
|
+
readonly name?: string;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Index definition for table builder.
|
|
62
|
+
*/
|
|
63
|
+
interface IndexDef {
|
|
64
|
+
readonly columns: readonly string[];
|
|
65
|
+
readonly name?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Optional index access method. Extension-specific methods are represented
|
|
68
|
+
* as strings and interpreted by the owning extension package.
|
|
69
|
+
*/
|
|
70
|
+
readonly using?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Optional extension-owned index configuration payload.
|
|
73
|
+
*/
|
|
74
|
+
readonly config?: Record<string, unknown>;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Options for configuring a foreign key's name and referential actions.
|
|
78
|
+
*/
|
|
79
|
+
type ForeignKeyOptions = {
|
|
80
|
+
readonly name?: string;
|
|
81
|
+
readonly onDelete?: ReferentialAction;
|
|
82
|
+
readonly onUpdate?: ReferentialAction;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Foreign key definition for table builder.
|
|
86
|
+
*/
|
|
87
|
+
interface ForeignKeyDef extends ForeignKeyOptions {
|
|
88
|
+
readonly columns: readonly string[];
|
|
89
|
+
readonly references: {
|
|
90
|
+
readonly table: string;
|
|
91
|
+
readonly columns: readonly string[];
|
|
92
|
+
};
|
|
93
|
+
readonly constraint?: boolean;
|
|
94
|
+
readonly index?: boolean;
|
|
95
|
+
}
|
|
96
|
+
interface TableBuilderState<Name extends string, Columns extends Record<string, ColumnBuilderState<string, boolean, string>>, PrimaryKey extends readonly string[] | undefined> {
|
|
97
|
+
readonly name: Name;
|
|
98
|
+
readonly columns: Columns;
|
|
99
|
+
readonly primaryKey?: PrimaryKey;
|
|
100
|
+
readonly primaryKeyName?: string;
|
|
101
|
+
readonly uniques: readonly UniqueConstraintDef[];
|
|
102
|
+
readonly indexes: readonly IndexDef[];
|
|
103
|
+
readonly foreignKeys: readonly ForeignKeyDef[];
|
|
104
|
+
}
|
|
105
|
+
type RelationDefinition = {
|
|
106
|
+
readonly to: string;
|
|
107
|
+
readonly cardinality: '1:1' | '1:N' | 'N:1' | 'N:M';
|
|
108
|
+
readonly on: {
|
|
109
|
+
readonly parentCols: readonly string[];
|
|
110
|
+
readonly childCols: readonly string[];
|
|
111
|
+
};
|
|
112
|
+
readonly through?: {
|
|
113
|
+
readonly table: string;
|
|
114
|
+
readonly parentCols: readonly string[];
|
|
115
|
+
readonly childCols: readonly string[];
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
interface ModelBuilderState<Name extends string, Table extends string, Fields extends Record<string, string>, Relations extends Record<string, RelationDefinition>> {
|
|
119
|
+
readonly name: Name;
|
|
120
|
+
readonly table: Table;
|
|
121
|
+
readonly fields: Fields;
|
|
122
|
+
readonly relations: Relations;
|
|
123
|
+
}
|
|
124
|
+
interface ForeignKeyDefaultsState {
|
|
125
|
+
readonly constraint: boolean;
|
|
126
|
+
readonly index: boolean;
|
|
127
|
+
}
|
|
128
|
+
interface ContractBuilderState<Target extends string | undefined = string | undefined, Tables extends Record<string, TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>> = Record<never, TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>>, Models extends Record<string, ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>> = Record<never, ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>>, StorageHash extends string | undefined = string | undefined, ExtensionPacks extends Record<string, unknown> | undefined = undefined, Capabilities extends Record<string, Record<string, boolean>> | undefined = undefined> {
|
|
129
|
+
readonly target?: Target;
|
|
130
|
+
readonly tables: Tables;
|
|
131
|
+
readonly models: Models;
|
|
132
|
+
readonly storageHash?: StorageHash;
|
|
133
|
+
readonly extensionPacks?: ExtensionPacks;
|
|
134
|
+
readonly capabilities?: Capabilities;
|
|
135
|
+
readonly storageTypes?: Record<string, StorageTypeInstanceState>;
|
|
136
|
+
readonly foreignKeyDefaults?: ForeignKeyDefaultsState;
|
|
137
|
+
/**
|
|
138
|
+
* Array of extension pack namespace identifiers (e.g., ['pgvector', 'postgis']).
|
|
139
|
+
* Populated when extension packs are registered during contract building.
|
|
140
|
+
* Used to track which extension packs are included in the contract.
|
|
141
|
+
* Can be undefined or empty if no extension packs are registered.
|
|
142
|
+
* Namespace format matches the extension pack ID (e.g., 'pgvector', not 'pgvector@1.0.0').
|
|
143
|
+
*/
|
|
144
|
+
readonly extensionNamespaces?: readonly string[];
|
|
145
|
+
}
|
|
146
|
+
interface ColumnBuilder<Name extends string, Nullable extends boolean, Type extends string> {
|
|
147
|
+
nullable<Value extends boolean>(value?: Value): ColumnBuilder<Name, Value, Type>;
|
|
148
|
+
type<Id extends string>(id: Id): ColumnBuilder<Name, Nullable, Id>;
|
|
149
|
+
build(): ColumnBuilderState<Name, Nullable, Type>;
|
|
150
|
+
}
|
|
151
|
+
//#endregion
|
|
152
|
+
//#region src/model-builder.d.ts
|
|
153
|
+
declare class ModelBuilder<Name extends string, Table extends string, Fields extends Record<string, string> = Record<never, never>, Relations extends Record<string, RelationDefinition> = Record<never, never>> {
|
|
154
|
+
private readonly _name;
|
|
155
|
+
private readonly _table;
|
|
156
|
+
private readonly _fields;
|
|
157
|
+
private readonly _relations;
|
|
158
|
+
constructor(name: Name, table: Table, fields?: Fields, relations?: Relations);
|
|
159
|
+
field<FieldName extends string, ColumnName extends string>(fieldName: FieldName, columnName: ColumnName): ModelBuilder<Name, Table, Fields & Record<FieldName, ColumnName>, Relations>;
|
|
160
|
+
relation<RelationName extends string, ToModel extends string, ToTable extends string>(name: RelationName, options: {
|
|
161
|
+
toModel: ToModel;
|
|
162
|
+
toTable: ToTable;
|
|
163
|
+
cardinality: '1:1' | '1:N' | 'N:1';
|
|
164
|
+
on: {
|
|
165
|
+
parentTable: Table;
|
|
166
|
+
parentColumns: readonly string[];
|
|
167
|
+
childTable: ToTable;
|
|
168
|
+
childColumns: readonly string[];
|
|
169
|
+
};
|
|
170
|
+
}): ModelBuilder<Name, Table, Fields, Relations & Record<RelationName, RelationDefinition>>;
|
|
171
|
+
relation<RelationName extends string, ToModel extends string, ToTable extends string, JunctionTable extends string>(name: RelationName, options: {
|
|
172
|
+
toModel: ToModel;
|
|
173
|
+
toTable: ToTable;
|
|
174
|
+
cardinality: 'N:M';
|
|
175
|
+
through: {
|
|
176
|
+
table: JunctionTable;
|
|
177
|
+
parentColumns: readonly string[];
|
|
178
|
+
childColumns: readonly string[];
|
|
179
|
+
};
|
|
180
|
+
on: {
|
|
181
|
+
parentTable: Table;
|
|
182
|
+
parentColumns: readonly string[];
|
|
183
|
+
childTable: JunctionTable;
|
|
184
|
+
childColumns: readonly string[];
|
|
185
|
+
};
|
|
186
|
+
}): ModelBuilder<Name, Table, Fields, Relations & Record<RelationName, RelationDefinition>>;
|
|
187
|
+
build(): ModelBuilderState<Name, Table, Fields, Relations>;
|
|
188
|
+
}
|
|
189
|
+
//#endregion
|
|
190
|
+
//#region src/table-builder.d.ts
|
|
191
|
+
/**
|
|
192
|
+
* Column options for nullable columns.
|
|
193
|
+
*/
|
|
194
|
+
interface NullableColumnOptions<Descriptor extends ColumnTypeDescriptor> {
|
|
195
|
+
type: Descriptor;
|
|
196
|
+
nullable: true;
|
|
197
|
+
typeParams?: Record<string, unknown>;
|
|
198
|
+
default?: ColumnDefault;
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Column options for non-nullable columns.
|
|
202
|
+
* Non-nullable columns can optionally have a default value.
|
|
203
|
+
*/
|
|
204
|
+
interface NonNullableColumnOptions<Descriptor extends ColumnTypeDescriptor> {
|
|
205
|
+
type: Descriptor;
|
|
206
|
+
nullable?: false;
|
|
207
|
+
typeParams?: Record<string, unknown>;
|
|
208
|
+
default?: ColumnDefault;
|
|
209
|
+
}
|
|
210
|
+
type GeneratedColumnOptions<Descriptor extends ColumnTypeDescriptor> = Omit<NonNullableColumnOptions<Descriptor>, 'default' | 'nullable'> & {
|
|
211
|
+
/**
|
|
212
|
+
* Generated columns are always non-nullable and use mutation-time defaults
|
|
213
|
+
* that the runtime injects when the column is omitted from insert input.
|
|
214
|
+
*/
|
|
215
|
+
nullable?: false;
|
|
216
|
+
generated: ExecutionMutationDefaultValue;
|
|
217
|
+
};
|
|
218
|
+
type IndexOptions = {
|
|
219
|
+
readonly name?: string;
|
|
220
|
+
readonly using?: string;
|
|
221
|
+
readonly config?: Record<string, unknown>;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Creates a new table builder with the given name.
|
|
225
|
+
* This is the preferred way to create a TableBuilder - it ensures
|
|
226
|
+
* type parameters are inferred correctly without unsafe casts.
|
|
227
|
+
*/
|
|
228
|
+
declare function createTable<Name extends string>(name: Name): TableBuilder<Name>;
|
|
229
|
+
/**
|
|
230
|
+
* Builder for defining table structure with type-safe chaining.
|
|
231
|
+
* Use `createTable(name)` to create instances.
|
|
232
|
+
*/
|
|
233
|
+
declare class TableBuilder<Name extends string, Columns extends Record<string, ColumnBuilderState<string, boolean, string>> = Record<never, ColumnBuilderState<string, boolean, string>>, PrimaryKey extends readonly string[] | undefined = undefined> {
|
|
234
|
+
private readonly _state;
|
|
235
|
+
/** @internal Use createTable() instead */
|
|
236
|
+
constructor(name: Name, columns: Columns, primaryKey: PrimaryKey, primaryKeyName: string | undefined, uniques: readonly UniqueConstraintDef[], indexes: readonly IndexDef[], foreignKeys: readonly ForeignKeyDef[]);
|
|
237
|
+
private get _name();
|
|
238
|
+
private get _columns();
|
|
239
|
+
private get _primaryKey();
|
|
240
|
+
/** Add a nullable column to the table. */
|
|
241
|
+
column<ColName extends string, Descriptor extends ColumnTypeDescriptor>(name: ColName, options: NullableColumnOptions<Descriptor>): TableBuilder<Name, Columns & Record<ColName, ColumnBuilderState<ColName, true, Descriptor['codecId']>>, PrimaryKey>;
|
|
242
|
+
/**
|
|
243
|
+
* Add a non-nullable column to the table.
|
|
244
|
+
* Non-nullable columns can optionally have a default value.
|
|
245
|
+
*/
|
|
246
|
+
column<ColName extends string, Descriptor extends ColumnTypeDescriptor>(name: ColName, options: NonNullableColumnOptions<Descriptor>): TableBuilder<Name, Columns & Record<ColName, ColumnBuilderState<ColName, false, Descriptor['codecId']>>, PrimaryKey>;
|
|
247
|
+
generated<ColName extends string, Descriptor extends ColumnTypeDescriptor>(name: ColName, options: GeneratedColumnOptions<Descriptor>): TableBuilder<Name, Columns & Record<ColName, ColumnBuilderState<ColName, false, Descriptor['codecId']>>, PrimaryKey>;
|
|
248
|
+
private columnInternal;
|
|
249
|
+
primaryKey<PK extends readonly string[]>(columns: PK, name?: string): TableBuilder<Name, Columns, PK>;
|
|
250
|
+
unique(columns: readonly string[], name?: string): TableBuilder<Name, Columns, PrimaryKey>;
|
|
251
|
+
index(columns: readonly string[], name?: string): TableBuilder<Name, Columns, PrimaryKey>;
|
|
252
|
+
index(columns: readonly string[], options?: IndexOptions): TableBuilder<Name, Columns, PrimaryKey>;
|
|
253
|
+
index(indexDef: IndexDef): TableBuilder<Name, Columns, PrimaryKey>;
|
|
254
|
+
foreignKey(columns: readonly string[], references: {
|
|
255
|
+
table: string;
|
|
256
|
+
columns: readonly string[];
|
|
257
|
+
}, opts?: string | (ForeignKeyOptions & {
|
|
258
|
+
constraint?: boolean;
|
|
259
|
+
index?: boolean;
|
|
260
|
+
})): TableBuilder<Name, Columns, PrimaryKey>;
|
|
261
|
+
build(): TableBuilderState<Name, Columns, PrimaryKey>;
|
|
262
|
+
}
|
|
263
|
+
//#endregion
|
|
264
|
+
//#region src/contract-builder.d.ts
|
|
265
|
+
declare class ContractBuilder<Target extends string | undefined = undefined, Tables extends Record<string, TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>> = Record<never, never>, Models extends Record<string, ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>> = Record<never, never>, StorageHash extends string | undefined = undefined, ExtensionPacks extends Record<string, unknown> | undefined = undefined, Capabilities extends Record<string, Record<string, boolean>> | undefined = undefined> {
|
|
266
|
+
protected readonly state: ContractBuilderState<Target, Tables, Models, StorageHash, ExtensionPacks, Capabilities>;
|
|
267
|
+
constructor(state?: ContractBuilderState<Target, Tables, Models, StorageHash, ExtensionPacks, Capabilities>);
|
|
268
|
+
target<T extends string>(packRef: TargetPackRef<string, T>): ContractBuilder<T, Tables, Models, StorageHash, ExtensionPacks, Capabilities>;
|
|
269
|
+
capabilities<C extends Record<string, Record<string, boolean>>>(capabilities: C): ContractBuilder<Target, Tables, Models, StorageHash, ExtensionPacks, C>;
|
|
270
|
+
table<TableName extends string, T extends TableBuilder<TableName, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>>(name: TableName, callback: (t: TableBuilder<TableName>) => T | undefined): ContractBuilder<Target, Tables & Record<TableName, ReturnType<T['build']>>, Models, StorageHash, ExtensionPacks, Capabilities>;
|
|
271
|
+
model<ModelName extends string, TableName extends string, M extends ModelBuilder<ModelName, TableName, Record<string, string>, Record<string, RelationDefinition>>>(name: ModelName, table: TableName, callback: (m: ModelBuilder<ModelName, TableName, Record<never, never>, Record<never, never>>) => M | undefined): ContractBuilder<Target, Tables, Models & Record<ModelName, ReturnType<M['build']>>, StorageHash, ExtensionPacks, Capabilities>;
|
|
272
|
+
storageHash<H extends string>(hash: H): ContractBuilder<Target, Tables, Models, H, ExtensionPacks, Capabilities>;
|
|
273
|
+
foreignKeyDefaults(config: ForeignKeyDefaultsState): ContractBuilder<Target, Tables, Models, StorageHash, ExtensionPacks, Capabilities>;
|
|
274
|
+
}
|
|
275
|
+
declare function defineContract(): ContractBuilder;
|
|
276
|
+
//#endregion
|
|
277
|
+
//#region src/types.d.ts
|
|
278
|
+
type BuildStorageColumn<Nullable extends boolean, Type extends string> = {
|
|
279
|
+
readonly nativeType: string;
|
|
280
|
+
readonly codecId: Type;
|
|
281
|
+
readonly nullable: Nullable;
|
|
282
|
+
readonly typeParams?: Record<string, unknown>;
|
|
283
|
+
readonly typeRef?: string;
|
|
284
|
+
readonly default?: ColumnDefault;
|
|
285
|
+
};
|
|
286
|
+
type ExtractColumns<T extends TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>> = T extends TableBuilderState<string, infer C, readonly string[] | undefined> ? C : never;
|
|
287
|
+
type ExtractPrimaryKey<T extends TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>> = T extends TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, infer PK> ? PK : never;
|
|
288
|
+
type BuildStorage<Tables extends Record<string, TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>>> = {
|
|
289
|
+
readonly tables: { readonly [K in keyof Tables]: {
|
|
290
|
+
readonly columns: { readonly [ColK in keyof ExtractColumns<Tables[K]>]: ExtractColumns<Tables[K]>[ColK] extends ColumnBuilderState<string, infer Null, infer TType> ? BuildStorageColumn<Null & boolean, TType> : never };
|
|
291
|
+
} };
|
|
292
|
+
};
|
|
293
|
+
type BuildStorageTables<Tables extends Record<string, TableBuilderState<string, Record<string, ColumnBuilderState<string, boolean, string>>, readonly string[] | undefined>>> = { readonly [K in keyof Tables]: {
|
|
294
|
+
readonly columns: { readonly [ColK in keyof ExtractColumns<Tables[K]>]: ExtractColumns<Tables[K]>[ColK] extends ColumnBuilderState<string, infer Null, infer TType> ? BuildStorageColumn<Null & boolean, TType> : never };
|
|
295
|
+
} };
|
|
296
|
+
type Mutable<T> = { -readonly [K in keyof T]-?: T[K] };
|
|
297
|
+
type BuildModelFields<Fields extends Record<string, string>> = { readonly [K in keyof Fields]: {
|
|
298
|
+
readonly column: Fields[K];
|
|
299
|
+
} };
|
|
300
|
+
type ExtractModelFields<T extends ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>> = T extends ModelBuilderState<string, string, infer F, Record<string, RelationDefinition>> ? F : never;
|
|
301
|
+
type ExtractModelRelations<T extends ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>> = T extends ModelBuilderState<string, string, Record<string, string>, infer R> ? R : never;
|
|
302
|
+
type BuildModels<Models extends Record<string, ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>>> = { readonly [K in keyof Models]: {
|
|
303
|
+
readonly storage: {
|
|
304
|
+
readonly table: Models[K]['table'];
|
|
305
|
+
};
|
|
306
|
+
readonly fields: BuildModelFields<ExtractModelFields<Models[K]>>;
|
|
307
|
+
} };
|
|
308
|
+
type BuildRelations<Models extends Record<string, ModelBuilderState<string, string, Record<string, string>, Record<string, RelationDefinition>>>> = { readonly [K in keyof Models as Models[K]['table']]: ExtractModelRelations<Models[K]> };
|
|
309
|
+
//#endregion
|
|
310
|
+
export { type BuildModelFields, type BuildModels, type BuildRelations, type BuildStorage, type BuildStorageColumn, type BuildStorageTables, type ColumnBuilder, type ColumnBuilderState, type ColumnTypeDescriptor, ContractBuilder, type ContractBuilderState, type ExtractColumns, type ExtractModelFields, type ExtractModelRelations, type ExtractPrimaryKey, type ForeignKeyDef, type ForeignKeyDefaultsState, type ForeignKeyOptions, type IndexDef, ModelBuilder, type ModelBuilderState, type Mutable, type RelationDefinition, TableBuilder, type TableBuilderState, type UniqueConstraintDef, createTable, defineContract };
|
|
311
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/builder-state.ts","../src/model-builder.ts","../src/table-builder.ts","../src/contract-builder.ts","../src/types.ts"],"sourcesContent":[],"mappings":"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XE,CGY1B,MHZ0B,EGa1B,MHb0B,EGc1B,MHd0B,EGe1B,WHf0B,EGgB1B,cHhB0B,EGiB1B,YHjB0B,CAAA;EAOzB,WAAA,CAAA,KAAsB,CAAtB,EGcO,oBHde,CGcM,MHdN,EGcc,MHdd,EGcsB,MHdtB,EGc8B,WHd9B,EGc2C,cHd3C,EGc2D,YHd3D,CAAA;EACV,MAAA,CAAA,UAAA,MAAA,CAAA,CAAA,OAAA,EGwBJ,aHxBI,CAAA,MAAA,EGwBkB,CHxBlB,CAAA,CAAA,EGyBZ,eHzBY,CGyBI,CHzBJ,EGyBO,MHzBP,EGyBe,MHzBf,EGyBuB,WHzBvB,EGyBoC,cHzBpC,EGyBoD,YHzBpD,CAAA;EACA,YAAA,CAAA,UG+BQ,MH/BR,CAAA,MAAA,EG+BuB,MH/BvB,CAAA,MAAA,EAAA,OAAA,CAAA,CAAA,CAAA,CAAA,YAAA,EGgCC,CHhCD,CAAA,EGiCZ,eHjCY,CGiCI,MHjCJ,EGiCY,MHjCZ,EGiCoB,MHjCpB,EGiC4B,WHjC5B,EGiCyC,cHjCzC,EGiCyD,CHjCzD,CAAA;EAEO,KAAA,CAAA,kBAAA,MAAA,EAAA,UGwCV,YHxCU,CGyClB,SHzCkB,EG0ClB,MH1CkB,CAAA,MAAA,EG0CH,kBH1CG,CAAA,MAAA,EAAA,OAAA,EAAA,MAAA,CAAA,CAAA,EAAA,SAAA,MAAA,EAAA,GAAA,SAAA,CAAA,CAAA,CAAA,IAAA,EG8Cd,SH9Cc,EAAA,QAAA,EAAA,CAAA,CAAA,EG+CN,YH/CM,CG+CO,SH/CP,CAAA,EAAA,GG+CsB,CH/CtB,GAAA,SAAA,CAAA,EGgDnB,eHhDmB,CGiDpB,MHjDoB,EGkDpB,MHlDoB,GGkDX,MHlDW,CGkDJ,SHlDI,EGkDO,UHlDP,CGkDkB,CHlDlB,CAAA,OAAA,CAAA,CAAA,CAAA,EGmDpB,MHnDoB,EGoDpB,WHpDoB,EGqDpB,cHrDoB,EGsDpB,YHtDoB,CAAA;EAAM,KAAA,CAAA,kBAAA,MAAA,EAAA,kBAAA,MAAA,EAAA,UG8EhB,YH9EgB,CG+ExB,SH/EwB,EGgFxB,SHhFwB,EGiFxB,MHjFwB,CAAA,MAAA,EAAA,MAAA,CAAA,EGkFxB,MHlFwB,CAAA,MAAA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"}
|