@tsonic/efcore 10.0.8 → 10.0.11
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/Microsoft.EntityFrameworkCore/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +13 -14
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +33 -66
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +6 -10
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +136 -272
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +43 -43
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +19 -38
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +2 -3
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +2 -2
- package/package.json +4 -4
|
@@ -89,7 +89,6 @@ export interface IRuntimeComplexProperty$instance extends IComplexProperty, IRea
|
|
|
89
89
|
readonly IsCollection: boolean;
|
|
90
90
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
91
91
|
readonly FieldInfo: FieldInfo | undefined;
|
|
92
|
-
readonly [name: string]: unknown | undefined;
|
|
93
92
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
94
93
|
readonly Accessors: PropertyAccessors;
|
|
95
94
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -115,7 +114,7 @@ export interface IRuntimeComplexProperty$instance extends IComplexProperty, IRea
|
|
|
115
114
|
}
|
|
116
115
|
|
|
117
116
|
|
|
118
|
-
export type IRuntimeComplexProperty = IRuntimeComplexProperty$instance;
|
|
117
|
+
export type IRuntimeComplexProperty = IRuntimeComplexProperty$instance & { readonly [name: string]: unknown | undefined; };
|
|
119
118
|
|
|
120
119
|
export interface IRuntimeComplexType$instance extends IComplexType, IReadOnlyComplexType, IReadOnlyTypeBase, IReadOnlyAnnotatable, ITypeBase, IAnnotatable {
|
|
121
120
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeComplexType: never;
|
|
@@ -129,7 +128,6 @@ export interface IRuntimeComplexType$instance extends IComplexType, IReadOnlyCom
|
|
|
129
128
|
readonly ClrType: Type;
|
|
130
129
|
readonly HasSharedClrType: boolean;
|
|
131
130
|
readonly IsPropertyBag: boolean;
|
|
132
|
-
readonly [name: string]: unknown | undefined;
|
|
133
131
|
readonly ConstructorBinding: InstantiationBinding | undefined;
|
|
134
132
|
readonly ContainingEntryType: IRuntimeTypeBase;
|
|
135
133
|
readonly OriginalValueCount: int;
|
|
@@ -199,7 +197,7 @@ export interface IRuntimeComplexType$instance extends IComplexType, IReadOnlyCom
|
|
|
199
197
|
}
|
|
200
198
|
|
|
201
199
|
|
|
202
|
-
export type IRuntimeComplexType = IRuntimeComplexType$instance;
|
|
200
|
+
export type IRuntimeComplexType = IRuntimeComplexType$instance & { readonly [name: string]: unknown | undefined; };
|
|
203
201
|
|
|
204
202
|
export interface IRuntimeDbFunction$instance extends IDbFunction, IReadOnlyDbFunction, IReadOnlyAnnotatable, IAnnotatable {
|
|
205
203
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeDbFunction: never;
|
|
@@ -219,7 +217,6 @@ export interface IRuntimeDbFunction$instance extends IDbFunction, IReadOnlyDbFun
|
|
|
219
217
|
readonly ReturnType: Type;
|
|
220
218
|
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
221
219
|
readonly Translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression> | undefined;
|
|
222
|
-
readonly [name: string]: unknown | undefined;
|
|
223
220
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
224
221
|
AnnotationsToDebugString(indent?: int): string;
|
|
225
222
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -232,7 +229,7 @@ export interface IRuntimeDbFunction$instance extends IDbFunction, IReadOnlyDbFun
|
|
|
232
229
|
}
|
|
233
230
|
|
|
234
231
|
|
|
235
|
-
export type IRuntimeDbFunction = IRuntimeDbFunction$instance;
|
|
232
|
+
export type IRuntimeDbFunction = IRuntimeDbFunction$instance & { readonly [name: string]: unknown | undefined; };
|
|
236
233
|
|
|
237
234
|
export interface IRuntimeDbFunctionParameter$instance extends IDbFunctionParameter, IReadOnlyDbFunctionParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
238
235
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeDbFunctionParameter: never;
|
|
@@ -244,7 +241,6 @@ export interface IRuntimeDbFunctionParameter$instance extends IDbFunctionParamet
|
|
|
244
241
|
readonly ClrType: Type;
|
|
245
242
|
readonly PropagatesNullability: boolean;
|
|
246
243
|
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
247
|
-
readonly [name: string]: unknown | undefined;
|
|
248
244
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
249
245
|
AnnotationsToDebugString(indent?: int): string;
|
|
250
246
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -257,7 +253,7 @@ export interface IRuntimeDbFunctionParameter$instance extends IDbFunctionParamet
|
|
|
257
253
|
}
|
|
258
254
|
|
|
259
255
|
|
|
260
|
-
export type IRuntimeDbFunctionParameter = IRuntimeDbFunctionParameter$instance;
|
|
256
|
+
export type IRuntimeDbFunctionParameter = IRuntimeDbFunctionParameter$instance & { readonly [name: string]: unknown | undefined; };
|
|
261
257
|
|
|
262
258
|
export interface IRuntimeEntityType$instance extends IEntityType, IReadOnlyEntityType, IReadOnlyTypeBase, IReadOnlyAnnotatable, ITypeBase, IAnnotatable {
|
|
263
259
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType: never;
|
|
@@ -271,7 +267,6 @@ export interface IRuntimeEntityType$instance extends IEntityType, IReadOnlyEntit
|
|
|
271
267
|
readonly ClrType: Type;
|
|
272
268
|
readonly HasSharedClrType: boolean;
|
|
273
269
|
readonly IsPropertyBag: boolean;
|
|
274
|
-
readonly [name: string]: unknown | undefined;
|
|
275
270
|
readonly ConstructorBinding: InstantiationBinding | undefined;
|
|
276
271
|
readonly ContainingEntryType: IRuntimeTypeBase;
|
|
277
272
|
readonly OriginalValueCount: int;
|
|
@@ -402,7 +397,7 @@ export interface IRuntimeEntityType$instance extends IEntityType, IReadOnlyEntit
|
|
|
402
397
|
}
|
|
403
398
|
|
|
404
399
|
|
|
405
|
-
export type IRuntimeEntityType = IRuntimeEntityType$instance;
|
|
400
|
+
export type IRuntimeEntityType = IRuntimeEntityType$instance & { readonly [name: string]: unknown | undefined; };
|
|
406
401
|
|
|
407
402
|
export interface IRuntimeForeignKey$instance extends IForeignKey, IReadOnlyForeignKey, IReadOnlyAnnotatable, IAnnotatable {
|
|
408
403
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeForeignKey: never;
|
|
@@ -420,7 +415,6 @@ export interface IRuntimeForeignKey$instance extends IForeignKey, IReadOnlyForei
|
|
|
420
415
|
readonly IsRequiredDependent: boolean;
|
|
421
416
|
readonly IsOwnership: boolean;
|
|
422
417
|
readonly DeleteBehavior: DeleteBehavior;
|
|
423
|
-
readonly [name: string]: unknown | undefined;
|
|
424
418
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
425
419
|
AnnotationsToDebugString(indent?: int): string;
|
|
426
420
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -444,14 +438,13 @@ export interface IRuntimeForeignKey$instance extends IForeignKey, IReadOnlyForei
|
|
|
444
438
|
}
|
|
445
439
|
|
|
446
440
|
|
|
447
|
-
export type IRuntimeForeignKey = IRuntimeForeignKey$instance;
|
|
441
|
+
export type IRuntimeForeignKey = IRuntimeForeignKey$instance & { readonly [name: string]: unknown | undefined; };
|
|
448
442
|
|
|
449
443
|
export interface IRuntimeKey$instance extends IKey, IReadOnlyKey, IReadOnlyAnnotatable, IAnnotatable {
|
|
450
444
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeKey: never;
|
|
451
445
|
|
|
452
446
|
readonly Properties: IReadOnlyList_1<IProperty>;
|
|
453
447
|
readonly DeclaringEntityType: IEntityType;
|
|
454
|
-
readonly [name: string]: unknown | undefined;
|
|
455
448
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
456
449
|
AnnotationsToDebugString(indent?: int): string;
|
|
457
450
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -471,7 +464,7 @@ export interface IRuntimeKey$instance extends IKey, IReadOnlyKey, IReadOnlyAnnot
|
|
|
471
464
|
}
|
|
472
465
|
|
|
473
466
|
|
|
474
|
-
export type IRuntimeKey = IRuntimeKey$instance;
|
|
467
|
+
export type IRuntimeKey = IRuntimeKey$instance & { readonly [name: string]: unknown | undefined; };
|
|
475
468
|
|
|
476
469
|
export interface IRuntimeModel$instance extends IModel, IReadOnlyModel, IReadOnlyAnnotatable, IAnnotatable {
|
|
477
470
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeModel: never;
|
|
@@ -481,7 +474,6 @@ export interface IRuntimeModel$instance extends IModel, IReadOnlyModel, IReadOnl
|
|
|
481
474
|
get ModelDependencies(): RuntimeModelDependencies | undefined;
|
|
482
475
|
set ModelDependencies(value: RuntimeModelDependencies | undefined);
|
|
483
476
|
readonly ModelId: Guid;
|
|
484
|
-
readonly [name: string]: unknown | undefined;
|
|
485
477
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
486
478
|
AnnotationsToDebugString(indent?: int): string;
|
|
487
479
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -517,7 +509,7 @@ export interface IRuntimeModel$instance extends IModel, IReadOnlyModel, IReadOnl
|
|
|
517
509
|
}
|
|
518
510
|
|
|
519
511
|
|
|
520
|
-
export type IRuntimeModel = IRuntimeModel$instance;
|
|
512
|
+
export type IRuntimeModel = IRuntimeModel$instance & { readonly [name: string]: unknown | undefined; };
|
|
521
513
|
|
|
522
514
|
export interface IRuntimeNavigation$instance extends INavigation, IReadOnlyNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, INavigationBase, IPropertyBase, IAnnotatable {
|
|
523
515
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeNavigation: never;
|
|
@@ -536,7 +528,6 @@ export interface IRuntimeNavigation$instance extends INavigation, IReadOnlyNavig
|
|
|
536
528
|
readonly IsCollection: boolean;
|
|
537
529
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
538
530
|
readonly FieldInfo: FieldInfo | undefined;
|
|
539
|
-
readonly [name: string]: unknown | undefined;
|
|
540
531
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
541
532
|
readonly Accessors: PropertyAccessors;
|
|
542
533
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -563,7 +554,7 @@ export interface IRuntimeNavigation$instance extends INavigation, IReadOnlyNavig
|
|
|
563
554
|
}
|
|
564
555
|
|
|
565
556
|
|
|
566
|
-
export type IRuntimeNavigation = IRuntimeNavigation$instance;
|
|
557
|
+
export type IRuntimeNavigation = IRuntimeNavigation$instance & { readonly [name: string]: unknown | undefined; };
|
|
567
558
|
|
|
568
559
|
export interface IRuntimeNavigationBase$instance extends INavigationBase, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
569
560
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeNavigationBase: never;
|
|
@@ -580,7 +571,6 @@ export interface IRuntimeNavigationBase$instance extends INavigationBase, IReadO
|
|
|
580
571
|
readonly IsCollection: boolean;
|
|
581
572
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
582
573
|
readonly FieldInfo: FieldInfo | undefined;
|
|
583
|
-
readonly [name: string]: unknown | undefined;
|
|
584
574
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
585
575
|
readonly Accessors: PropertyAccessors;
|
|
586
576
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -606,7 +596,7 @@ export interface IRuntimeNavigationBase$instance extends INavigationBase, IReadO
|
|
|
606
596
|
}
|
|
607
597
|
|
|
608
598
|
|
|
609
|
-
export type IRuntimeNavigationBase = IRuntimeNavigationBase$instance;
|
|
599
|
+
export type IRuntimeNavigationBase = IRuntimeNavigationBase$instance & { readonly [name: string]: unknown | undefined; };
|
|
610
600
|
|
|
611
601
|
export interface IRuntimeProperty$instance extends IProperty, IReadOnlyProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
612
602
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeProperty: never;
|
|
@@ -623,7 +613,6 @@ export interface IRuntimeProperty$instance extends IProperty, IReadOnlyProperty,
|
|
|
623
613
|
readonly IsCollection: boolean;
|
|
624
614
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
625
615
|
readonly FieldInfo: FieldInfo | undefined;
|
|
626
|
-
readonly [name: string]: unknown | undefined;
|
|
627
616
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
628
617
|
readonly Accessors: PropertyAccessors;
|
|
629
618
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -672,7 +661,7 @@ export interface IRuntimeProperty$instance extends IProperty, IReadOnlyProperty,
|
|
|
672
661
|
}
|
|
673
662
|
|
|
674
663
|
|
|
675
|
-
export type IRuntimeProperty = IRuntimeProperty$instance;
|
|
664
|
+
export type IRuntimeProperty = IRuntimeProperty$instance & { readonly [name: string]: unknown | undefined; };
|
|
676
665
|
|
|
677
666
|
export interface IRuntimePropertyBase$instance extends IPropertyBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IAnnotatable {
|
|
678
667
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimePropertyBase: never;
|
|
@@ -687,7 +676,6 @@ export interface IRuntimePropertyBase$instance extends IPropertyBase, IReadOnlyP
|
|
|
687
676
|
readonly IsCollection: boolean;
|
|
688
677
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
689
678
|
readonly FieldInfo: FieldInfo | undefined;
|
|
690
|
-
readonly [name: string]: unknown | undefined;
|
|
691
679
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
692
680
|
AnnotationsToDebugString(indent?: int): string;
|
|
693
681
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -710,7 +698,7 @@ export interface IRuntimePropertyBase$instance extends IPropertyBase, IReadOnlyP
|
|
|
710
698
|
}
|
|
711
699
|
|
|
712
700
|
|
|
713
|
-
export type IRuntimePropertyBase = IRuntimePropertyBase$instance;
|
|
701
|
+
export type IRuntimePropertyBase = IRuntimePropertyBase$instance & { readonly [name: string]: unknown | undefined; };
|
|
714
702
|
|
|
715
703
|
export interface IRuntimeServiceProperty$instance extends IServiceProperty, IReadOnlyServiceProperty, IReadOnlyPropertyBase, IReadOnlyAnnotatable, IPropertyBase, IAnnotatable {
|
|
716
704
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeServiceProperty: never;
|
|
@@ -724,7 +712,6 @@ export interface IRuntimeServiceProperty$instance extends IServiceProperty, IRea
|
|
|
724
712
|
readonly IsCollection: boolean;
|
|
725
713
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
726
714
|
readonly FieldInfo: FieldInfo | undefined;
|
|
727
|
-
readonly [name: string]: unknown | undefined;
|
|
728
715
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
729
716
|
readonly Accessors: PropertyAccessors;
|
|
730
717
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -750,7 +737,7 @@ export interface IRuntimeServiceProperty$instance extends IServiceProperty, IRea
|
|
|
750
737
|
}
|
|
751
738
|
|
|
752
739
|
|
|
753
|
-
export type IRuntimeServiceProperty = IRuntimeServiceProperty$instance;
|
|
740
|
+
export type IRuntimeServiceProperty = IRuntimeServiceProperty$instance & { readonly [name: string]: unknown | undefined; };
|
|
754
741
|
|
|
755
742
|
export interface IRuntimeSkipNavigation$instance extends ISkipNavigation, IReadOnlySkipNavigation, IReadOnlyNavigationBase, IReadOnlyPropertyBase, IReadOnlyAnnotatable, INavigationBase, IPropertyBase, IAnnotatable {
|
|
756
743
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeSkipNavigation: never;
|
|
@@ -770,7 +757,6 @@ export interface IRuntimeSkipNavigation$instance extends ISkipNavigation, IReadO
|
|
|
770
757
|
readonly IsCollection: boolean;
|
|
771
758
|
readonly PropertyInfo: PropertyInfo | undefined;
|
|
772
759
|
readonly FieldInfo: FieldInfo | undefined;
|
|
773
|
-
readonly [name: string]: unknown | undefined;
|
|
774
760
|
readonly MaterializationSetter: IClrPropertySetter;
|
|
775
761
|
readonly Accessors: PropertyAccessors;
|
|
776
762
|
PropertyIndexes: PropertyIndexes;
|
|
@@ -798,7 +784,7 @@ export interface IRuntimeSkipNavigation$instance extends ISkipNavigation, IReadO
|
|
|
798
784
|
}
|
|
799
785
|
|
|
800
786
|
|
|
801
|
-
export type IRuntimeSkipNavigation = IRuntimeSkipNavigation$instance;
|
|
787
|
+
export type IRuntimeSkipNavigation = IRuntimeSkipNavigation$instance & { readonly [name: string]: unknown | undefined; };
|
|
802
788
|
|
|
803
789
|
export interface IRuntimeStoredProcedure$instance extends IStoredProcedure, IReadOnlyStoredProcedure, IReadOnlyAnnotatable, IAnnotatable {
|
|
804
790
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeStoredProcedure: never;
|
|
@@ -810,7 +796,6 @@ export interface IRuntimeStoredProcedure$instance extends IStoredProcedure, IRea
|
|
|
810
796
|
readonly ResultColumns: IReadOnlyList_1<IStoredProcedureResultColumn>;
|
|
811
797
|
readonly Schema: string | undefined;
|
|
812
798
|
readonly IsRowsAffectedReturned: boolean;
|
|
813
|
-
readonly [name: string]: unknown | undefined;
|
|
814
799
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
815
800
|
AnnotationsToDebugString(indent?: int): string;
|
|
816
801
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -839,7 +824,7 @@ export interface IRuntimeStoredProcedure$instance extends IStoredProcedure, IRea
|
|
|
839
824
|
}
|
|
840
825
|
|
|
841
826
|
|
|
842
|
-
export type IRuntimeStoredProcedure = IRuntimeStoredProcedure$instance;
|
|
827
|
+
export type IRuntimeStoredProcedure = IRuntimeStoredProcedure$instance & { readonly [name: string]: unknown | undefined; };
|
|
843
828
|
|
|
844
829
|
export interface IRuntimeStoredProcedureParameter$instance extends IStoredProcedureParameter, IReadOnlyStoredProcedureParameter, IReadOnlyAnnotatable, IAnnotatable {
|
|
845
830
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeStoredProcedureParameter: never;
|
|
@@ -851,7 +836,6 @@ export interface IRuntimeStoredProcedureParameter$instance extends IStoredProced
|
|
|
851
836
|
readonly Direction: ParameterDirection;
|
|
852
837
|
readonly ForOriginalValue: Nullable_1<System_Internal.Boolean>;
|
|
853
838
|
readonly ForRowsAffected: boolean;
|
|
854
|
-
readonly [name: string]: unknown | undefined;
|
|
855
839
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
856
840
|
AnnotationsToDebugString(indent?: int): string;
|
|
857
841
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -864,7 +848,7 @@ export interface IRuntimeStoredProcedureParameter$instance extends IStoredProced
|
|
|
864
848
|
}
|
|
865
849
|
|
|
866
850
|
|
|
867
|
-
export type IRuntimeStoredProcedureParameter = IRuntimeStoredProcedureParameter$instance;
|
|
851
|
+
export type IRuntimeStoredProcedureParameter = IRuntimeStoredProcedureParameter$instance & { readonly [name: string]: unknown | undefined; };
|
|
868
852
|
|
|
869
853
|
export interface IRuntimeStoredProcedureResultColumn$instance extends IStoredProcedureResultColumn, IReadOnlyStoredProcedureResultColumn, IReadOnlyAnnotatable, IAnnotatable {
|
|
870
854
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeStoredProcedureResultColumn: never;
|
|
@@ -874,7 +858,6 @@ export interface IRuntimeStoredProcedureResultColumn$instance extends IStoredPro
|
|
|
874
858
|
readonly Name: string;
|
|
875
859
|
readonly PropertyName: string | undefined;
|
|
876
860
|
readonly ForRowsAffected: boolean;
|
|
877
|
-
readonly [name: string]: unknown | undefined;
|
|
878
861
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
879
862
|
AnnotationsToDebugString(indent?: int): string;
|
|
880
863
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
@@ -887,7 +870,7 @@ export interface IRuntimeStoredProcedureResultColumn$instance extends IStoredPro
|
|
|
887
870
|
}
|
|
888
871
|
|
|
889
872
|
|
|
890
|
-
export type IRuntimeStoredProcedureResultColumn = IRuntimeStoredProcedureResultColumn$instance;
|
|
873
|
+
export type IRuntimeStoredProcedureResultColumn = IRuntimeStoredProcedureResultColumn$instance & { readonly [name: string]: unknown | undefined; };
|
|
891
874
|
|
|
892
875
|
export interface IRuntimeTypeBase$instance extends ITypeBase, IReadOnlyTypeBase, IReadOnlyAnnotatable, IAnnotatable {
|
|
893
876
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
|
|
@@ -914,7 +897,6 @@ export interface IRuntimeTypeBase$instance extends ITypeBase, IReadOnlyTypeBase,
|
|
|
914
897
|
readonly ClrType: Type;
|
|
915
898
|
readonly HasSharedClrType: boolean;
|
|
916
899
|
readonly IsPropertyBag: boolean;
|
|
917
|
-
readonly [name: string]: unknown | undefined;
|
|
918
900
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
919
901
|
AnnotationsToDebugString(indent?: int): string;
|
|
920
902
|
CalculateCounts(): PropertyCounts;
|
|
@@ -962,7 +944,7 @@ export interface IRuntimeTypeBase$instance extends ITypeBase, IReadOnlyTypeBase,
|
|
|
962
944
|
}
|
|
963
945
|
|
|
964
946
|
|
|
965
|
-
export type IRuntimeTypeBase = IRuntimeTypeBase$instance;
|
|
947
|
+
export type IRuntimeTypeBase = IRuntimeTypeBase$instance & { readonly [name: string]: unknown | undefined; };
|
|
966
948
|
|
|
967
949
|
export interface TypeIdentity$instance {
|
|
968
950
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeIdentity: never;
|
|
@@ -5563,7 +5545,6 @@ export interface QueryFilterCollection$instance {
|
|
|
5563
5545
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
5564
5546
|
|
|
5565
5547
|
readonly Count: int;
|
|
5566
|
-
readonly [filterKey: string]: IQueryFilter | undefined;
|
|
5567
5548
|
GetEnumerator(): IEnumerator_1<IQueryFilter>;
|
|
5568
5549
|
Set(filter: IQueryFilter): IQueryFilter | undefined;
|
|
5569
5550
|
SetRange(newFilters: IEnumerable_1<IQueryFilter>): void;
|
|
@@ -5576,7 +5557,7 @@ export const QueryFilterCollection: {
|
|
|
5576
5557
|
};
|
|
5577
5558
|
|
|
5578
5559
|
|
|
5579
|
-
export type QueryFilterCollection = QueryFilterCollection$instance;
|
|
5560
|
+
export type QueryFilterCollection = QueryFilterCollection$instance & { readonly [filterKey: string]: IQueryFilter | undefined; };
|
|
5580
5561
|
|
|
5581
5562
|
export interface Reference_1$instance<T> {
|
|
5582
5563
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Internal_Reference_1: never;
|
|
@@ -579,7 +579,6 @@ export interface ValueBuffer$instance {
|
|
|
579
579
|
|
|
580
580
|
readonly Count: int;
|
|
581
581
|
readonly IsEmpty: boolean;
|
|
582
|
-
[index: number]: unknown | undefined;
|
|
583
582
|
Equals(obj: unknown): boolean;
|
|
584
583
|
Equals(other: ValueBuffer): boolean;
|
|
585
584
|
GetHashCode(): int;
|
|
@@ -592,7 +591,7 @@ export const ValueBuffer: {
|
|
|
592
591
|
};
|
|
593
592
|
|
|
594
593
|
|
|
595
|
-
export type ValueBuffer = ValueBuffer$instance;
|
|
594
|
+
export type ValueBuffer = ValueBuffer$instance & { [index: number]: unknown | undefined; };
|
|
596
595
|
|
|
597
596
|
export interface BoolTypeMapping$instance extends RelationalTypeMapping {
|
|
598
597
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Storage_BoolTypeMapping: never;
|
|
@@ -1651,7 +1650,7 @@ export const RelationalSqlGenerationHelperDependencies: {
|
|
|
1651
1650
|
|
|
1652
1651
|
export type RelationalSqlGenerationHelperDependencies = RelationalSqlGenerationHelperDependencies$instance;
|
|
1653
1652
|
|
|
1654
|
-
export interface RelationalTransaction$instance {
|
|
1653
|
+
export interface RelationalTransaction$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<DbTransaction>, IDbContextTransaction$instance {
|
|
1655
1654
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Storage_RelationalTransaction: never;
|
|
1656
1655
|
|
|
1657
1656
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
@@ -83,7 +83,7 @@ export interface __CompositeRelationalParameter$views {
|
|
|
83
83
|
export type CompositeRelationalParameter = CompositeRelationalParameter$instance & __CompositeRelationalParameter$views;
|
|
84
84
|
|
|
85
85
|
|
|
86
|
-
export interface DatabaseFacadeDependencies$instance {
|
|
86
|
+
export interface DatabaseFacadeDependencies$instance extends Microsoft_EntityFrameworkCore_Storage_Internal.IDatabaseFacadeDependencies$instance, System_Internal.IEquatable_1<DatabaseFacadeDependencies> {
|
|
87
87
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Storage_Internal_DatabaseFacadeDependencies: never;
|
|
88
88
|
|
|
89
89
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Storage_IDatabaseFacadeDependencies: never;
|
|
@@ -265,7 +265,7 @@ export interface __RawSqlCommandBuilder$views {
|
|
|
265
265
|
export type RawSqlCommandBuilder = RawSqlCommandBuilder$instance & __RawSqlCommandBuilder$views;
|
|
266
266
|
|
|
267
267
|
|
|
268
|
-
export interface RelationalDatabaseFacadeDependencies$instance {
|
|
268
|
+
export interface RelationalDatabaseFacadeDependencies$instance extends Microsoft_EntityFrameworkCore_Storage_Internal.IRelationalDatabaseFacadeDependencies$instance, System_Internal.IEquatable_1<RelationalDatabaseFacadeDependencies> {
|
|
269
269
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Storage_Internal_RelationalDatabaseFacadeDependencies: never;
|
|
270
270
|
|
|
271
271
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Storage_IDatabaseFacadeDependencies: never;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.11",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.* for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/efcore.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/core": "
|
|
23
|
-
"@tsonic/dotnet": "
|
|
24
|
-
"@tsonic/microsoft-extensions": "
|
|
22
|
+
"@tsonic/core": "10.0.11",
|
|
23
|
+
"@tsonic/dotnet": "10.0.11",
|
|
24
|
+
"@tsonic/microsoft-extensions": "10.0.11"
|
|
25
25
|
}
|
|
26
26
|
}
|