@prisma-next/runtime-executor 0.3.0-dev.9 → 0.3.0-dev.90
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 +5 -3
- package/dist/index.d.mts +169 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +555 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +23 -16
- package/src/async-iterable-result.ts +39 -22
- package/src/exports/index.ts +3 -2
- package/src/marker.ts +1 -1
- package/src/plugins/budgets.ts +7 -26
- package/src/runtime-core.ts +105 -28
- package/dist/async-iterable-result.d.ts +0 -17
- package/dist/async-iterable-result.d.ts.map +0 -1
- package/dist/errors.d.ts +0 -8
- package/dist/errors.d.ts.map +0 -1
- package/dist/exports/index.d.ts +0 -17
- package/dist/exports/index.d.ts.map +0 -1
- package/dist/fingerprint.d.ts +0 -2
- package/dist/fingerprint.d.ts.map +0 -1
- package/dist/guardrails/raw.d.ts +0 -28
- package/dist/guardrails/raw.d.ts.map +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -746
- package/dist/index.js.map +0 -1
- package/dist/marker.d.ts +0 -13
- package/dist/marker.d.ts.map +0 -1
- package/dist/plugins/budgets.d.ts +0 -16
- package/dist/plugins/budgets.d.ts.map +0 -1
- package/dist/plugins/lints.d.ts +0 -11
- package/dist/plugins/lints.d.ts.map +0 -1
- package/dist/plugins/types.d.ts +0 -27
- package/dist/plugins/types.d.ts.map +0 -1
- package/dist/runtime-core.d.ts +0 -37
- package/dist/runtime-core.d.ts.map +0 -1
- package/dist/runtime-spi.d.ts +0 -14
- package/dist/runtime-spi.d.ts.map +0 -1
- package/src/plugins/lints.ts +0 -85
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
|
@@ -18,7 +18,7 @@ Provide a target-agnostic execution engine that family runtimes (e.g., `@prisma-
|
|
|
18
18
|
|
|
19
19
|
## Responsibilities
|
|
20
20
|
|
|
21
|
-
- **Plan Validation**: Verify plans against contracts (
|
|
21
|
+
- **Plan Validation**: Verify plans against contracts (storageHash/profileHash checks)
|
|
22
22
|
- **Marker Verification**: Read and parse contract markers from databases
|
|
23
23
|
- **Plugin Orchestration**: Manage plugin lifecycle (beforeExecute, onRow, afterExecute hooks)
|
|
24
24
|
- **Telemetry Recording**: Track execution metrics (lane, target, fingerprint, outcome, duration)
|
|
@@ -64,7 +64,7 @@ const core = createRuntimeCore({
|
|
|
64
64
|
driver,
|
|
65
65
|
verify: { mode: 'onFirstUse', requireMarker: false },
|
|
66
66
|
operationRegistry,
|
|
67
|
-
plugins: [budgets()
|
|
67
|
+
plugins: [budgets()],
|
|
68
68
|
});
|
|
69
69
|
```
|
|
70
70
|
|
|
@@ -73,11 +73,13 @@ const core = createRuntimeCore({
|
|
|
73
73
|
- `createRuntimeCore` - Create a target-neutral runtime instance
|
|
74
74
|
- `RuntimeFamilyAdapter` - Interface for family runtimes
|
|
75
75
|
- `MarkerReader` - Interface for marker reading
|
|
76
|
-
- `budgets
|
|
76
|
+
- `budgets` - Target-neutral budgets plugin
|
|
77
77
|
- `runtimeError` - Error envelope utilities
|
|
78
78
|
- `computeSqlFingerprint` - SQL fingerprint computation
|
|
79
79
|
- `parseContractMarkerRow` - Marker parsing utilities
|
|
80
80
|
|
|
81
|
+
**Note:** The `lints` plugin has been migrated to the SQL domain. Import `lints` and `LintsOptions` from `@prisma-next/sql-runtime` instead. See [ADR 162](../../../docs/architecture docs/adrs/ADR 162 - Kysely lane emits PN SQL AST.md) for rationale.
|
|
82
|
+
|
|
81
83
|
## Testing
|
|
82
84
|
|
|
83
85
|
Includes a mock-family smoke test (`test/mock-family.test.ts`) that proves runtime-executor can work without SQL dependencies.
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { ContractMarkerRecord, ContractMarkerRecord as ContractMarkerRecord$1, ExecutionPlan } from "@prisma-next/contract/types";
|
|
2
|
+
import { OperationRegistry } from "@prisma-next/operations";
|
|
3
|
+
|
|
4
|
+
//#region src/async-iterable-result.d.ts
|
|
5
|
+
/**
|
|
6
|
+
* Custom async iterable result that extends AsyncIterable with a toArray() method.
|
|
7
|
+
* This provides a convenient way to collect all results from an async iterator.
|
|
8
|
+
*/
|
|
9
|
+
declare class AsyncIterableResult<Row> implements AsyncIterable<Row>, PromiseLike<Row[]> {
|
|
10
|
+
private readonly generator;
|
|
11
|
+
private consumed;
|
|
12
|
+
private consumedBy;
|
|
13
|
+
private bufferedArrayPromise;
|
|
14
|
+
constructor(generator: AsyncGenerator<Row, void, unknown>);
|
|
15
|
+
[Symbol.asyncIterator](): AsyncIterator<Row>;
|
|
16
|
+
/**
|
|
17
|
+
* Collects all values from the async iterator into an array.
|
|
18
|
+
* Once called, the iterator is consumed and cannot be reused.
|
|
19
|
+
*/
|
|
20
|
+
toArray(): Promise<Row[]>;
|
|
21
|
+
then<TResult1 = Row[], TResult2 = never>(onfulfilled?: ((value: Row[]) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: unknown) => TResult2 | PromiseLike<TResult2>) | undefined | null): PromiseLike<TResult1 | TResult2>;
|
|
22
|
+
}
|
|
23
|
+
//#endregion
|
|
24
|
+
//#region src/errors.d.ts
|
|
25
|
+
interface RuntimeErrorEnvelope extends Error {
|
|
26
|
+
readonly code: string;
|
|
27
|
+
readonly category: 'PLAN' | 'CONTRACT' | 'LINT' | 'BUDGET' | 'RUNTIME';
|
|
28
|
+
readonly severity: 'error';
|
|
29
|
+
readonly details?: Record<string, unknown>;
|
|
30
|
+
}
|
|
31
|
+
declare function runtimeError(code: string, message: string, details?: Record<string, unknown>): RuntimeErrorEnvelope;
|
|
32
|
+
//#endregion
|
|
33
|
+
//#region src/fingerprint.d.ts
|
|
34
|
+
declare function computeSqlFingerprint(sql: string): string;
|
|
35
|
+
//#endregion
|
|
36
|
+
//#region src/guardrails/raw.d.ts
|
|
37
|
+
type LintSeverity = 'error' | 'warn';
|
|
38
|
+
type BudgetSeverity = 'error' | 'warn';
|
|
39
|
+
interface LintFinding {
|
|
40
|
+
readonly code: `LINT.${string}`;
|
|
41
|
+
readonly severity: LintSeverity;
|
|
42
|
+
readonly message: string;
|
|
43
|
+
readonly details?: Record<string, unknown>;
|
|
44
|
+
}
|
|
45
|
+
interface BudgetFinding {
|
|
46
|
+
readonly code: `BUDGET.${string}`;
|
|
47
|
+
readonly severity: BudgetSeverity;
|
|
48
|
+
readonly message: string;
|
|
49
|
+
readonly details?: Record<string, unknown>;
|
|
50
|
+
}
|
|
51
|
+
interface RawGuardrailConfig {
|
|
52
|
+
readonly budgets?: {
|
|
53
|
+
readonly unboundedSelectSeverity?: BudgetSeverity;
|
|
54
|
+
readonly estimatedRows?: number;
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
interface RawGuardrailResult {
|
|
58
|
+
readonly lints: LintFinding[];
|
|
59
|
+
readonly budgets: BudgetFinding[];
|
|
60
|
+
readonly statement: 'select' | 'mutation' | 'other';
|
|
61
|
+
}
|
|
62
|
+
declare function evaluateRawGuardrails(plan: ExecutionPlan, config?: RawGuardrailConfig): RawGuardrailResult;
|
|
63
|
+
//#endregion
|
|
64
|
+
//#region src/marker.d.ts
|
|
65
|
+
declare function parseContractMarkerRow(row: unknown): ContractMarkerRecord$1;
|
|
66
|
+
//#endregion
|
|
67
|
+
//#region src/plugins/types.d.ts
|
|
68
|
+
type Severity = 'error' | 'warn' | 'info';
|
|
69
|
+
interface Log {
|
|
70
|
+
info(event: unknown): void;
|
|
71
|
+
warn(event: unknown): void;
|
|
72
|
+
error(event: unknown): void;
|
|
73
|
+
}
|
|
74
|
+
interface PluginContext<TContract = unknown, TAdapter = unknown, TDriver = unknown> {
|
|
75
|
+
readonly contract: TContract;
|
|
76
|
+
readonly adapter: TAdapter;
|
|
77
|
+
readonly driver: TDriver;
|
|
78
|
+
readonly mode: 'strict' | 'permissive';
|
|
79
|
+
readonly now: () => number;
|
|
80
|
+
readonly log: Log;
|
|
81
|
+
}
|
|
82
|
+
interface AfterExecuteResult {
|
|
83
|
+
readonly rowCount: number;
|
|
84
|
+
readonly latencyMs: number;
|
|
85
|
+
readonly completed: boolean;
|
|
86
|
+
}
|
|
87
|
+
interface Plugin<TContract = unknown, TAdapter = unknown, TDriver = unknown> {
|
|
88
|
+
readonly name: string;
|
|
89
|
+
beforeExecute?(plan: ExecutionPlan, ctx: PluginContext<TContract, TAdapter, TDriver>): Promise<void>;
|
|
90
|
+
onRow?(row: Record<string, unknown>, plan: ExecutionPlan, ctx: PluginContext<TContract, TAdapter, TDriver>): Promise<void>;
|
|
91
|
+
afterExecute?(plan: ExecutionPlan, result: AfterExecuteResult, ctx: PluginContext<TContract, TAdapter, TDriver>): Promise<void>;
|
|
92
|
+
}
|
|
93
|
+
//#endregion
|
|
94
|
+
//#region src/plugins/budgets.d.ts
|
|
95
|
+
interface BudgetsOptions {
|
|
96
|
+
readonly maxRows?: number;
|
|
97
|
+
readonly defaultTableRows?: number;
|
|
98
|
+
readonly tableRows?: Record<string, number>;
|
|
99
|
+
readonly maxLatencyMs?: number;
|
|
100
|
+
readonly severities?: {
|
|
101
|
+
readonly rowCount?: 'warn' | 'error';
|
|
102
|
+
readonly latency?: 'warn' | 'error';
|
|
103
|
+
};
|
|
104
|
+
readonly explain?: {
|
|
105
|
+
readonly enabled?: boolean;
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
declare function budgets<TContract = unknown, TAdapter = unknown, TDriver = unknown>(options?: BudgetsOptions): Plugin<TContract, TAdapter, TDriver>;
|
|
109
|
+
//#endregion
|
|
110
|
+
//#region src/runtime-spi.d.ts
|
|
111
|
+
interface MarkerStatement {
|
|
112
|
+
readonly sql: string;
|
|
113
|
+
readonly params: readonly unknown[];
|
|
114
|
+
}
|
|
115
|
+
interface MarkerReader {
|
|
116
|
+
readMarkerStatement(): MarkerStatement;
|
|
117
|
+
}
|
|
118
|
+
interface RuntimeFamilyAdapter<TContract = unknown> {
|
|
119
|
+
readonly contract: TContract;
|
|
120
|
+
readonly markerReader: MarkerReader;
|
|
121
|
+
validatePlan(plan: ExecutionPlan, contract: TContract): void;
|
|
122
|
+
}
|
|
123
|
+
//#endregion
|
|
124
|
+
//#region src/runtime-core.d.ts
|
|
125
|
+
interface RuntimeVerifyOptions {
|
|
126
|
+
readonly mode: 'onFirstUse' | 'startup' | 'always';
|
|
127
|
+
readonly requireMarker: boolean;
|
|
128
|
+
}
|
|
129
|
+
type TelemetryOutcome = 'success' | 'runtime-error';
|
|
130
|
+
interface RuntimeTelemetryEvent {
|
|
131
|
+
readonly lane: string;
|
|
132
|
+
readonly target: string;
|
|
133
|
+
readonly fingerprint: string;
|
|
134
|
+
readonly outcome: TelemetryOutcome;
|
|
135
|
+
readonly durationMs?: number;
|
|
136
|
+
}
|
|
137
|
+
interface RuntimeCoreOptions<TContract = unknown, TAdapter = unknown, TDriver = unknown> {
|
|
138
|
+
readonly familyAdapter: RuntimeFamilyAdapter<TContract>;
|
|
139
|
+
readonly driver: TDriver;
|
|
140
|
+
readonly verify: RuntimeVerifyOptions;
|
|
141
|
+
readonly plugins?: readonly Plugin<TContract, TAdapter, TDriver>[];
|
|
142
|
+
readonly mode?: 'strict' | 'permissive';
|
|
143
|
+
readonly log?: Log;
|
|
144
|
+
readonly operationRegistry: OperationRegistry;
|
|
145
|
+
}
|
|
146
|
+
interface RuntimeCore<TContract = unknown, TAdapter = unknown, TDriver = unknown> extends RuntimeQueryable {
|
|
147
|
+
readonly _typeContract?: TContract;
|
|
148
|
+
readonly _typeAdapter?: TAdapter;
|
|
149
|
+
readonly _typeDriver?: TDriver;
|
|
150
|
+
connection(): Promise<RuntimeConnection>;
|
|
151
|
+
telemetry(): RuntimeTelemetryEvent | null;
|
|
152
|
+
close(): Promise<void>;
|
|
153
|
+
operations(): OperationRegistry;
|
|
154
|
+
}
|
|
155
|
+
interface RuntimeConnection extends RuntimeQueryable {
|
|
156
|
+
transaction(): Promise<RuntimeTransaction>;
|
|
157
|
+
release(): Promise<void>;
|
|
158
|
+
}
|
|
159
|
+
interface RuntimeTransaction extends RuntimeQueryable {
|
|
160
|
+
commit(): Promise<void>;
|
|
161
|
+
rollback(): Promise<void>;
|
|
162
|
+
}
|
|
163
|
+
interface RuntimeQueryable {
|
|
164
|
+
execute<Row = Record<string, unknown>>(plan: ExecutionPlan<Row>): AsyncIterableResult<Row>;
|
|
165
|
+
}
|
|
166
|
+
declare function createRuntimeCore<TContract = unknown, TAdapter = unknown, TDriver = unknown>(options: RuntimeCoreOptions<TContract, TAdapter, TDriver>): RuntimeCore<TContract, TAdapter, TDriver>;
|
|
167
|
+
//#endregion
|
|
168
|
+
export { AfterExecuteResult, AsyncIterableResult, BudgetFinding, BudgetsOptions, type ContractMarkerRecord, LintFinding, Log, MarkerReader, MarkerStatement, Plugin, PluginContext, RawGuardrailResult, RuntimeConnection, RuntimeCore, RuntimeCoreOptions, RuntimeErrorEnvelope, RuntimeFamilyAdapter, RuntimeQueryable, RuntimeTelemetryEvent, RuntimeTransaction, RuntimeVerifyOptions, Severity, TelemetryOutcome, budgets, computeSqlFingerprint, createRuntimeCore, evaluateRawGuardrails, parseContractMarkerRow, runtimeError };
|
|
169
|
+
//# sourceMappingURL=index.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/async-iterable-result.ts","../src/errors.ts","../src/fingerprint.ts","../src/guardrails/raw.ts","../src/marker.ts","../src/plugins/types.ts","../src/plugins/budgets.ts","../src/runtime-spi.ts","../src/runtime-core.ts"],"sourcesContent":[],"mappings":"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"}
|