graphddb 0.6.0 → 0.7.0
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/cdc/index.d.ts +2 -2
- package/dist/{chunk-N5NQM3SO.js → chunk-GFGVDF4W.js} +500 -12
- package/dist/cli.js +155 -6
- package/dist/{from-change-CFzBy7aU.d.ts → from-change-pnURY-cV.d.ts} +1 -1
- package/dist/{index-CtJbTrfB.d.ts → index-Eg94ChE1.d.ts} +2 -2
- package/dist/index.d.ts +6 -6
- package/dist/index.js +11 -1
- package/dist/linter/index.d.ts +4 -4
- package/dist/{maintenance-view-adapter-CFeasCKo.d.ts → maintenance-view-adapter-BP2CJDdz.d.ts} +2489 -2245
- package/dist/{registry-DbqmFyab.d.ts → registry-Cv9nl_3i.d.ts} +1 -1
- package/dist/{relation-depth-0TiWr5OW.d.ts → relation-depth-BR0y7Q1i.d.ts} +1 -1
- package/dist/spec/index.d.ts +3 -3
- package/dist/spec/index.js +1 -1
- package/dist/testing/index.d.ts +1 -1
- package/dist/transform/index.d.ts +167 -0
- package/dist/transform/index.js +719 -0
- package/docs/prepared-statements.md +165 -0
- package/package.json +5 -1
package/dist/index.js
CHANGED
|
@@ -7,6 +7,9 @@ import {
|
|
|
7
7
|
EDGE_WRITES_MARKER,
|
|
8
8
|
MARKER_ROW_ENTITY,
|
|
9
9
|
OLD_VALUE_NAMESPACE,
|
|
10
|
+
PREPARE_CACHE_MAX,
|
|
11
|
+
PreparedReadStatement,
|
|
12
|
+
PreparedWriteStatement,
|
|
10
13
|
RELATION_TRAVERSAL_CONCURRENCY,
|
|
11
14
|
SPEC_VERSION,
|
|
12
15
|
assertBundleSerializable,
|
|
@@ -63,6 +66,7 @@ import {
|
|
|
63
66
|
isMutationFragment,
|
|
64
67
|
isMutationInputRef,
|
|
65
68
|
isPlannedCommandMethod,
|
|
69
|
+
isPreparedParamRef,
|
|
66
70
|
isQueryModelContract,
|
|
67
71
|
isTransactionRef,
|
|
68
72
|
mapWithConcurrency,
|
|
@@ -70,6 +74,7 @@ import {
|
|
|
70
74
|
mintContractParamRef,
|
|
71
75
|
mutation,
|
|
72
76
|
plan,
|
|
77
|
+
prepare,
|
|
73
78
|
publicCommandModel,
|
|
74
79
|
publicQueryModel,
|
|
75
80
|
query,
|
|
@@ -78,7 +83,7 @@ import {
|
|
|
78
83
|
validateDepth,
|
|
79
84
|
when,
|
|
80
85
|
wholeKeysSentinel
|
|
81
|
-
} from "./chunk-
|
|
86
|
+
} from "./chunk-GFGVDF4W.js";
|
|
82
87
|
import {
|
|
83
88
|
CdcEmulator,
|
|
84
89
|
MAINT_OUTBOX_PK_PREFIX,
|
|
@@ -1873,6 +1878,9 @@ export {
|
|
|
1873
1878
|
MaintenanceRebuilder,
|
|
1874
1879
|
MetadataRegistry,
|
|
1875
1880
|
OLD_VALUE_NAMESPACE,
|
|
1881
|
+
PREPARE_CACHE_MAX,
|
|
1882
|
+
PreparedReadStatement,
|
|
1883
|
+
PreparedWriteStatement,
|
|
1876
1884
|
RetryingExecutor,
|
|
1877
1885
|
SPEC_VERSION,
|
|
1878
1886
|
TableMapping,
|
|
@@ -1987,6 +1995,7 @@ export {
|
|
|
1987
1995
|
isMutationInputRef,
|
|
1988
1996
|
isParam,
|
|
1989
1997
|
isPlannedCommandMethod,
|
|
1998
|
+
isPreparedParamRef,
|
|
1990
1999
|
isQueryModelContract,
|
|
1991
2000
|
isRetryableError,
|
|
1992
2001
|
isRetryableTransactionCancellation,
|
|
@@ -2012,6 +2021,7 @@ export {
|
|
|
2012
2021
|
param,
|
|
2013
2022
|
parseChange,
|
|
2014
2023
|
plan,
|
|
2024
|
+
prepare,
|
|
2015
2025
|
preview,
|
|
2016
2026
|
publicCommandModel,
|
|
2017
2027
|
publicQueryModel,
|
package/dist/linter/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { L as LintRule } from '../registry-
|
|
2
|
-
export { a as LintResult, b as Linter } from '../registry-
|
|
3
|
-
export { c as createDefaultLinter, g as gsiAmbiguityRule, m as missingGsiRule, n as noScanRule, q as queryBoundaryRule, r as relationDepthRule, a as requireLimitRule } from '../relation-depth-
|
|
4
|
-
import '../maintenance-view-adapter-
|
|
1
|
+
import { L as LintRule } from '../registry-Cv9nl_3i.js';
|
|
2
|
+
export { a as LintResult, b as Linter } from '../registry-Cv9nl_3i.js';
|
|
3
|
+
export { c as createDefaultLinter, g as gsiAmbiguityRule, m as missingGsiRule, n as noScanRule, q as queryBoundaryRule, r as relationDepthRule, a as requireLimitRule } from '../relation-depth-BR0y7Q1i.js';
|
|
4
|
+
import '../maintenance-view-adapter-BP2CJDdz.js';
|
|
5
5
|
import '@aws-sdk/client-dynamodb';
|
|
6
6
|
|
|
7
7
|
/**
|