@prisma-next/sql-runtime 0.14.0-dev.70 → 0.14.0-dev.72
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.
|
@@ -283,7 +283,7 @@ function budgets(options) {
|
|
|
283
283
|
const SELECT_STAR_REGEX = /select\s+\*/i;
|
|
284
284
|
const LIMIT_REGEX = /\blimit\b/i;
|
|
285
285
|
const MUTATION_PREFIX_REGEX = /^(insert|update|delete|create|alter|drop|truncate)\b/i;
|
|
286
|
-
const READ_ONLY_INTENTS = new Set([
|
|
286
|
+
const READ_ONLY_INTENTS = /* @__PURE__ */ new Set([
|
|
287
287
|
"read",
|
|
288
288
|
"report",
|
|
289
289
|
"readonly"
|
|
@@ -497,7 +497,7 @@ function createSqlExecutionStack(options) {
|
|
|
497
497
|
});
|
|
498
498
|
}
|
|
499
499
|
function assertExecutionStackContractRequirements(contract, stack) {
|
|
500
|
-
const providedComponentIds = new Set([
|
|
500
|
+
const providedComponentIds = /* @__PURE__ */ new Set([
|
|
501
501
|
stack.target.id,
|
|
502
502
|
stack.adapter.id,
|
|
503
503
|
...stack.extensionPacks.map((pack) => pack.id)
|
|
@@ -1634,4 +1634,4 @@ async function withTransaction(runtime, fn) {
|
|
|
1634
1634
|
//#endregion
|
|
1635
1635
|
export { createExecutionContext as a, lints as c, extractCodecIds as d, validateCodecRegistryCompleteness as f, createAstCodecRegistry as g, encodeParamsWithMetadata as h, decodeRow as i, budgets as l, deriveParamMetadata as m, withTransaction as n, createSqlExecutionStack as o, validateContractCodecMappings as p, buildDecodeContext as r, PreparedStatementImpl as s, SqlRuntimeBase as t, lowerSqlPlan as u };
|
|
1636
1636
|
|
|
1637
|
-
//# sourceMappingURL=exports-
|
|
1637
|
+
//# sourceMappingURL=exports-azP9o0S4.mjs.map
|