graphddb 0.7.7 → 0.7.8
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/cdc/index.js +2 -2
- package/dist/{chunk-F2DI3GTI.js → chunk-HFFIB77D.js} +4 -1
- package/dist/{chunk-5NXNEW43.js → chunk-IA6MW2HP.js} +1 -1
- package/dist/{chunk-WPABX7WG.js → chunk-NZRCBEWS.js} +828 -327
- package/dist/cli.js +2 -2
- package/dist/{from-change-D2zFApzb.d.ts → from-change-w2Ih8fkm.d.ts} +1 -1
- package/dist/{index-BnTZQ_IG.d.ts → index-Deugy2sa.d.ts} +10 -5
- package/dist/index.d.ts +28 -9
- package/dist/index.js +15 -14
- package/dist/linter/index.d.ts +4 -4
- package/dist/{maintenance-view-adapter-C1HaBX4y.d.ts → maintenance-view-adapter-BCbgKG5d.d.ts} +196 -41
- package/dist/{registry-DWhq5wiA.d.ts → registry-pAnFcc62.d.ts} +1 -1
- package/dist/{relation-depth-BnqfKkZB.d.ts → relation-depth-C9t4s9bt.d.ts} +1 -1
- package/dist/spec/index.d.ts +3 -3
- package/dist/spec/index.js +2 -2
- package/dist/testing/index.d.ts +1 -1
- package/dist/testing/index.js +2 -2
- package/package.json +1 -1
package/dist/cdc/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { C as CdcEmulator, M as MAINT_OUTBOX_PK_PREFIX, a as MaintenanceDrain, b as MaintenanceDrainOptions, c as createCdcEmulator, d as createMaintenanceDrain, e as createMaintenanceDrainHandler, p as parseChange } from '../from-change-
|
|
2
|
-
export { B as BatchResult, C as CdcEmulatorOptions, a as CdcMode, b as ChangeBatch, c as ChangeEvent, d as ChangeEventName, e as ChangeHandler, f as ClockMode, g as ConcurrentRecomputeRef, E as EventLog, F as FaultSpec, R as ReplayOptions, S as ShardId, h as StartingPosition, i as StreamViewType, j as SubscribeHandler, k as SubscribeHandlers, U as Unsubscribe, l as buildSubscribeHandler } from '../maintenance-view-adapter-
|
|
1
|
+
export { C as CdcEmulator, M as MAINT_OUTBOX_PK_PREFIX, a as MaintenanceDrain, b as MaintenanceDrainOptions, c as createCdcEmulator, d as createMaintenanceDrain, e as createMaintenanceDrainHandler, p as parseChange } from '../from-change-w2Ih8fkm.js';
|
|
2
|
+
export { B as BatchResult, C as CdcEmulatorOptions, a as CdcMode, b as ChangeBatch, c as ChangeEvent, d as ChangeEventName, e as ChangeHandler, f as ClockMode, g as ConcurrentRecomputeRef, E as EventLog, F as FaultSpec, R as ReplayOptions, S as ShardId, h as StartingPosition, i as StreamViewType, j as SubscribeHandler, k as SubscribeHandlers, U as Unsubscribe, l as buildSubscribeHandler } from '../maintenance-view-adapter-BCbgKG5d.js';
|
|
3
3
|
import '@aws-sdk/client-dynamodb';
|
|
4
4
|
|
|
5
5
|
/**
|
package/dist/cdc/index.js
CHANGED
|
@@ -8,11 +8,11 @@ import {
|
|
|
8
8
|
createMaintenanceDrainHandler,
|
|
9
9
|
hashString,
|
|
10
10
|
shardIdFor
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-IA6MW2HP.js";
|
|
12
12
|
import {
|
|
13
13
|
buildSubscribeHandler,
|
|
14
14
|
parseChange
|
|
15
|
-
} from "../chunk-
|
|
15
|
+
} from "../chunk-HFFIB77D.js";
|
|
16
16
|
import "../chunk-PDUVTYC5.js";
|
|
17
17
|
export {
|
|
18
18
|
CdcEmulator,
|
|
@@ -1051,7 +1051,7 @@ function collectRawConditionParams(raw) {
|
|
|
1051
1051
|
}
|
|
1052
1052
|
|
|
1053
1053
|
// src/expression/condition-expression.ts
|
|
1054
|
-
var
|
|
1054
|
+
var CONDITION_OPERATOR_KEYS = /* @__PURE__ */ new Set([
|
|
1055
1055
|
"eq",
|
|
1056
1056
|
"ne",
|
|
1057
1057
|
"gt",
|
|
@@ -1067,6 +1067,7 @@ var OPERATOR_KEYS = /* @__PURE__ */ new Set([
|
|
|
1067
1067
|
"attributeType",
|
|
1068
1068
|
"size"
|
|
1069
1069
|
]);
|
|
1070
|
+
var OPERATOR_KEYS = CONDITION_OPERATOR_KEYS;
|
|
1070
1071
|
function nameAlias(ctx, field) {
|
|
1071
1072
|
const alias = `#cond_${field}`;
|
|
1072
1073
|
ctx.names[alias] = field;
|
|
@@ -3816,8 +3817,10 @@ export {
|
|
|
3816
3817
|
isRawCondition,
|
|
3817
3818
|
cond,
|
|
3818
3819
|
compileRawCondition,
|
|
3820
|
+
condParamName,
|
|
3819
3821
|
serializeRawCondition,
|
|
3820
3822
|
collectRawConditionParams,
|
|
3823
|
+
CONDITION_OPERATOR_KEYS,
|
|
3821
3824
|
resolveConditionTree,
|
|
3822
3825
|
buildConditionExpression,
|
|
3823
3826
|
serializeFieldValue,
|