@s-hirano-ist/s-database 1.18.2 → 1.18.3

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.
@@ -1089,6 +1089,9 @@ declare type Fragment = {
1089
1089
  type: 'parameter';
1090
1090
  } | {
1091
1091
  type: 'parameterTuple';
1092
+ itemPrefix: string;
1093
+ itemSeparator: string;
1094
+ itemSuffix: string;
1092
1095
  } | {
1093
1096
  type: 'parameterTupleList';
1094
1097
  itemPrefix: string;
@@ -2324,6 +2327,7 @@ declare type QueryPlanNode = {
2324
2327
  args: {
2325
2328
  parent: QueryPlanNode;
2326
2329
  children: JoinExpression[];
2330
+ canAssumeStrictEquality: boolean;
2327
2331
  };
2328
2332
  } | {
2329
2333
  type: 'mapField';
@@ -3276,14 +3280,14 @@ declare namespace Utils {
3276
3280
  }
3277
3281
 
3278
3282
  declare type ValidationError = {
3279
- error_identifier: 'RELATION_VIOLATION';
3283
+ errorIdentifier: 'RELATION_VIOLATION';
3280
3284
  context: {
3281
3285
  relation: string;
3282
3286
  modelA: string;
3283
3287
  modelB: string;
3284
3288
  };
3285
3289
  } | {
3286
- error_identifier: 'MISSING_RELATED_RECORD';
3290
+ errorIdentifier: 'MISSING_RELATED_RECORD';
3287
3291
  context: {
3288
3292
  model: string;
3289
3293
  relation: string;
@@ -3292,24 +3296,24 @@ declare type ValidationError = {
3292
3296
  neededFor?: string;
3293
3297
  };
3294
3298
  } | {
3295
- error_identifier: 'MISSING_RECORD';
3299
+ errorIdentifier: 'MISSING_RECORD';
3296
3300
  context: {
3297
3301
  operation: string;
3298
3302
  };
3299
3303
  } | {
3300
- error_identifier: 'INCOMPLETE_CONNECT_INPUT';
3304
+ errorIdentifier: 'INCOMPLETE_CONNECT_INPUT';
3301
3305
  context: {
3302
3306
  expectedRows: number;
3303
3307
  };
3304
3308
  } | {
3305
- error_identifier: 'INCOMPLETE_CONNECT_OUTPUT';
3309
+ errorIdentifier: 'INCOMPLETE_CONNECT_OUTPUT';
3306
3310
  context: {
3307
3311
  expectedRows: number;
3308
3312
  relation: string;
3309
3313
  relationType: string;
3310
3314
  };
3311
3315
  } | {
3312
- error_identifier: 'RECORDS_NOT_CONNECTED';
3316
+ errorIdentifier: 'RECORDS_NOT_CONNECTED';
3313
3317
  context: {
3314
3318
  relation: string;
3315
3319
  parent: string;