@tsonic/efcore-npgsql 10.0.2 → 10.0.5
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 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Npgsql/internal/index.d.ts +226 -190
- package/Npgsql.BackendMessages/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +3 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +12 -16
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +6 -6
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +25 -21
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +8 -11
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +46 -41
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +39 -41
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +7 -7
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +10 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +2 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +69 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +91 -91
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +113 -146
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +48 -34
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +220 -400
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +20 -22
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +19 -12
- package/Npgsql.Internal/internal/index.d.ts +35 -46
- package/Npgsql.Internal.Postgres/internal/index.d.ts +6 -0
- package/Npgsql.NameTranslation/internal/index.d.ts +4 -0
- package/Npgsql.PostgresTypes/internal/index.d.ts +9 -18
- package/Npgsql.Replication/internal/index.d.ts +7 -3
- package/Npgsql.Replication.Internal/internal/index.d.ts +1 -2
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +4 -3
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +3 -29
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +2 -0
- package/Npgsql.Schema/internal/index.d.ts +7 -7
- package/Npgsql.TypeMapping/internal/index.d.ts +2 -0
- package/NpgsqlTypes/internal/index.d.ts +67 -9
- package/__internal/extensions/index.d.ts +752 -12
- package/package.json +1 -1
|
@@ -20,12 +20,12 @@ import type { ISqlGenerationHelper, RelationalDataReader } from "@tsonic/efcore/
|
|
|
20
20
|
import * as Microsoft_EntityFrameworkCore_Update_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
|
|
21
21
|
import type { ColumnModificationParameters, IColumnModification, IModificationCommand, IModificationCommandBatchFactory, IModificationCommandFactory, INonTrackedModificationCommand, IReadOnlyModificationCommand, IUpdateSqlGenerator, ModificationCommand, ModificationCommandBatch, ModificationCommandBatchFactoryDependencies, ModificationCommandParameters, NonTrackedModificationCommandParameters, ReaderModificationCommandBatch, ResultSetMapping, UpdateSqlGenerator, UpdateSqlGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
|
|
22
22
|
|
|
23
|
-
export
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
export interface NpgsqlModificationCommand$instance extends ModificationCommand {
|
|
24
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommand: never;
|
|
25
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_INonTrackedModificationCommand: never;
|
|
26
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IReadOnlyModificationCommand: never;
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
ProcessSinglePropertyJsonUpdate(parameters: ColumnModificationParameters): void;
|
|
29
29
|
PropagateResults(relationalReader: RelationalDataReader): void;
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -38,17 +38,13 @@ export const NpgsqlModificationCommand: {
|
|
|
38
38
|
|
|
39
39
|
export type NpgsqlModificationCommand = NpgsqlModificationCommand$instance;
|
|
40
40
|
|
|
41
|
-
export
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
export interface NpgsqlModificationCommandBatch$instance extends NpgsqlModificationCommandBatch$protected, ReaderModificationCommandBatch {
|
|
41
|
+
export interface NpgsqlModificationCommandBatch$instance extends ReaderModificationCommandBatch {
|
|
42
|
+
readonly MaxBatchSize: int;
|
|
43
|
+
AddParameter(columnModification: IColumnModification): void;
|
|
44
|
+
Consume(reader: RelationalDataReader): void;
|
|
45
|
+
ConsumeAsync(reader: RelationalDataReader, cancellationToken?: CancellationToken): Task;
|
|
46
|
+
ThrowAggregateUpdateConcurrencyException(reader: RelationalDataReader, commandIndex: int, expectedRowsAffected: int, rowsAffected: int): void;
|
|
47
|
+
ThrowAggregateUpdateConcurrencyExceptionAsync(reader: RelationalDataReader, commandIndex: int, expectedRowsAffected: int, rowsAffected: int, cancellationToken: CancellationToken): Task;
|
|
52
48
|
}
|
|
53
49
|
|
|
54
50
|
|
|
@@ -60,6 +56,8 @@ export const NpgsqlModificationCommandBatch: {
|
|
|
60
56
|
export type NpgsqlModificationCommandBatch = NpgsqlModificationCommandBatch$instance;
|
|
61
57
|
|
|
62
58
|
export interface NpgsqlModificationCommandBatchFactory$instance {
|
|
59
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandBatchFactory: never;
|
|
60
|
+
|
|
63
61
|
Create(): ModificationCommandBatch;
|
|
64
62
|
}
|
|
65
63
|
|
|
@@ -72,6 +70,8 @@ export const NpgsqlModificationCommandBatchFactory: {
|
|
|
72
70
|
export type NpgsqlModificationCommandBatchFactory = NpgsqlModificationCommandBatchFactory$instance;
|
|
73
71
|
|
|
74
72
|
export interface NpgsqlModificationCommandFactory$instance {
|
|
73
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandFactory: never;
|
|
74
|
+
|
|
75
75
|
CreateModificationCommand(modificationCommandParameters: ModificationCommandParameters): IModificationCommand;
|
|
76
76
|
CreateNonTrackedModificationCommand(modificationCommandParameters: NonTrackedModificationCommandParameters): INonTrackedModificationCommand;
|
|
77
77
|
}
|
|
@@ -84,18 +84,16 @@ export const NpgsqlModificationCommandFactory: {
|
|
|
84
84
|
|
|
85
85
|
export type NpgsqlModificationCommandFactory = NpgsqlModificationCommandFactory$instance;
|
|
86
86
|
|
|
87
|
-
export
|
|
88
|
-
|
|
89
|
-
protected AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
90
|
-
}
|
|
91
|
-
|
|
87
|
+
export interface NpgsqlUpdateSqlGenerator$instance extends UpdateSqlGenerator {
|
|
88
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateSqlGenerator: never;
|
|
92
89
|
|
|
93
|
-
export interface NpgsqlUpdateSqlGenerator$instance extends NpgsqlUpdateSqlGenerator$protected, UpdateSqlGenerator {
|
|
94
90
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
91
|
+
AppendInsertCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>, overridingSystemValue: boolean): void;
|
|
95
92
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
96
93
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, overridingSystemValue: boolean, requiresTransaction: boolean): ResultSetMapping;
|
|
97
94
|
AppendObtainNextSequenceValueOperation(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
98
95
|
AppendStoredProcedureCall(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
96
|
+
AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
99
97
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
100
98
|
}
|
|
101
99
|
|
|
@@ -22,6 +22,8 @@ import * as Microsoft_EntityFrameworkCore_ValueGeneration_Internal from "@tsonic
|
|
|
22
22
|
import type { HiLoValueGenerator, HiLoValueGeneratorState, IValueGeneratorCache, IValueGeneratorSelector, RelationalValueGeneratorSelector, ValueGenerator, ValueGeneratorCache, ValueGeneratorCacheDependencies, ValueGeneratorSelectorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.ValueGeneration.js";
|
|
23
23
|
|
|
24
24
|
export interface INpgsqlSequenceValueGeneratorFactory$instance {
|
|
25
|
+
readonly __tsonic_iface_Npgsql_EntityFrameworkCore_PostgreSQL_ValueGeneration_Internal_INpgsqlSequenceValueGeneratorFactory: never;
|
|
26
|
+
|
|
25
27
|
TryCreate(property: IProperty, clrType: Type, generatorState: NpgsqlSequenceValueGeneratorState, connection: INpgsqlRelationalConnection, rawSqlCommandBuilder: IRawSqlCommandBuilder, commandLogger: IRelationalCommandDiagnosticsLogger): ValueGenerator | undefined;
|
|
26
28
|
}
|
|
27
29
|
|
|
@@ -29,20 +31,20 @@ export interface INpgsqlSequenceValueGeneratorFactory$instance {
|
|
|
29
31
|
export type INpgsqlSequenceValueGeneratorFactory = INpgsqlSequenceValueGeneratorFactory$instance;
|
|
30
32
|
|
|
31
33
|
export interface INpgsqlValueGeneratorCache$instance extends IValueGeneratorCache {
|
|
34
|
+
readonly __tsonic_iface_Npgsql_EntityFrameworkCore_PostgreSQL_ValueGeneration_Internal_INpgsqlValueGeneratorCache: never;
|
|
35
|
+
|
|
32
36
|
GetOrAddSequenceState(property: IProperty, connection: IRelationalConnection): NpgsqlSequenceValueGeneratorState;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
export abstract class NpgsqlSequenceHiLoValueGenerator_1$protected<TValue> {
|
|
39
|
-
protected GetNewLowValue(): long;
|
|
40
|
-
protected GetNewLowValueAsync(cancellationToken?: CancellationToken): Task<System_Internal.Int64>;
|
|
41
|
-
}
|
|
40
|
+
export interface INpgsqlValueGeneratorCache$instance extends Microsoft_EntityFrameworkCore_ValueGeneration_Internal.IValueGeneratorCache {}
|
|
42
41
|
|
|
42
|
+
export type INpgsqlValueGeneratorCache = INpgsqlValueGeneratorCache$instance;
|
|
43
43
|
|
|
44
|
-
export interface NpgsqlSequenceHiLoValueGenerator_1$instance<TValue> extends
|
|
44
|
+
export interface NpgsqlSequenceHiLoValueGenerator_1$instance<TValue> extends HiLoValueGenerator<TValue> {
|
|
45
45
|
readonly GeneratesTemporaryValues: boolean;
|
|
46
|
+
GetNewLowValue(): long;
|
|
47
|
+
GetNewLowValueAsync(cancellationToken?: CancellationToken): Task<System_Internal.Int64>;
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
|
|
@@ -54,6 +56,8 @@ export const NpgsqlSequenceHiLoValueGenerator_1: {
|
|
|
54
56
|
export type NpgsqlSequenceHiLoValueGenerator_1<TValue> = NpgsqlSequenceHiLoValueGenerator_1$instance<TValue>;
|
|
55
57
|
|
|
56
58
|
export interface NpgsqlSequenceValueGeneratorFactory$instance {
|
|
59
|
+
readonly __tsonic_iface_Npgsql_EntityFrameworkCore_PostgreSQL_ValueGeneration_Internal_INpgsqlSequenceValueGeneratorFactory: never;
|
|
60
|
+
|
|
57
61
|
TryCreate(property: IProperty, type: Type, generatorState: NpgsqlSequenceValueGeneratorState, connection: INpgsqlRelationalConnection, rawSqlCommandBuilder: IRawSqlCommandBuilder, commandLogger: IRelationalCommandDiagnosticsLogger): ValueGenerator | undefined;
|
|
58
62
|
}
|
|
59
63
|
|
|
@@ -73,6 +77,8 @@ export type NpgsqlSequenceValueGeneratorFactory = NpgsqlSequenceValueGeneratorFa
|
|
|
73
77
|
|
|
74
78
|
|
|
75
79
|
export interface NpgsqlSequenceValueGeneratorState$instance extends HiLoValueGeneratorState {
|
|
80
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
81
|
+
|
|
76
82
|
readonly Sequence: ISequence;
|
|
77
83
|
}
|
|
78
84
|
|
|
@@ -85,6 +91,9 @@ export const NpgsqlSequenceValueGeneratorState: {
|
|
|
85
91
|
export type NpgsqlSequenceValueGeneratorState = NpgsqlSequenceValueGeneratorState$instance;
|
|
86
92
|
|
|
87
93
|
export interface NpgsqlValueGeneratorCache$instance extends ValueGeneratorCache {
|
|
94
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorCache: never;
|
|
95
|
+
readonly __tsonic_iface_Npgsql_EntityFrameworkCore_PostgreSQL_ValueGeneration_Internal_INpgsqlValueGeneratorCache: never;
|
|
96
|
+
|
|
88
97
|
GetOrAddSequenceState(property: IProperty, connection: IRelationalConnection): NpgsqlSequenceValueGeneratorState;
|
|
89
98
|
}
|
|
90
99
|
|
|
@@ -103,13 +112,11 @@ export interface NpgsqlValueGeneratorCache$instance extends INpgsqlValueGenerato
|
|
|
103
112
|
export type NpgsqlValueGeneratorCache = NpgsqlValueGeneratorCache$instance & __NpgsqlValueGeneratorCache$views;
|
|
104
113
|
|
|
105
114
|
|
|
106
|
-
export
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
|
|
115
|
+
export interface NpgsqlValueGeneratorSelector$instance extends RelationalValueGeneratorSelector {
|
|
116
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorSelector: never;
|
|
110
117
|
|
|
111
|
-
export interface NpgsqlValueGeneratorSelector$instance extends NpgsqlValueGeneratorSelector$protected, RelationalValueGeneratorSelector {
|
|
112
118
|
readonly Cache: INpgsqlValueGeneratorCache;
|
|
119
|
+
FindForType(property: IProperty, typeBase: ITypeBase, clrType: Type): ValueGenerator | undefined;
|
|
113
120
|
TrySelect(property: IProperty, typeBase: ITypeBase, valueGenerator: ValueGenerator): boolean;
|
|
114
121
|
}
|
|
115
122
|
|
|
@@ -50,6 +50,8 @@ export type TypeInfoFactory = (options: PgSerializerOptions, mapping: TypeInfoMa
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
export interface IDbTypeResolver$instance {
|
|
53
|
+
readonly __tsonic_iface_Npgsql_Internal_IDbTypeResolver: never;
|
|
54
|
+
|
|
53
55
|
GetDataTypeName(dbType: DbType, type: Type): string | undefined;
|
|
54
56
|
GetDbType(dataTypeName: DataTypeName): Nullable<DbType>;
|
|
55
57
|
}
|
|
@@ -58,6 +60,8 @@ export interface IDbTypeResolver$instance {
|
|
|
58
60
|
export type IDbTypeResolver = IDbTypeResolver$instance;
|
|
59
61
|
|
|
60
62
|
export interface INpgsqlDatabaseInfoFactory$instance {
|
|
63
|
+
readonly __tsonic_iface_Npgsql_Internal_INpgsqlDatabaseInfoFactory: never;
|
|
64
|
+
|
|
61
65
|
Load(conn: NpgsqlConnector, timeout: NpgsqlTimeout, async: boolean): Task<NpgsqlDatabaseInfo | undefined>;
|
|
62
66
|
}
|
|
63
67
|
|
|
@@ -65,6 +69,8 @@ export interface INpgsqlDatabaseInfoFactory$instance {
|
|
|
65
69
|
export type INpgsqlDatabaseInfoFactory = INpgsqlDatabaseInfoFactory$instance;
|
|
66
70
|
|
|
67
71
|
export interface IPgTypeInfoResolver$instance {
|
|
72
|
+
readonly __tsonic_iface_Npgsql_Internal_IPgTypeInfoResolver: never;
|
|
73
|
+
|
|
68
74
|
GetTypeInfo(type: Type, dataTypeName: Nullable<DataTypeName>, options: PgSerializerOptions): PgTypeInfo | undefined;
|
|
69
75
|
}
|
|
70
76
|
|
|
@@ -72,6 +78,8 @@ export interface IPgTypeInfoResolver$instance {
|
|
|
72
78
|
export type IPgTypeInfoResolver = IPgTypeInfoResolver$instance;
|
|
73
79
|
|
|
74
80
|
export interface BufferRequirements$instance {
|
|
81
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
82
|
+
|
|
75
83
|
readonly Read: Size;
|
|
76
84
|
readonly Write: Size;
|
|
77
85
|
Combine(read: Size, write: Size): BufferRequirements;
|
|
@@ -96,6 +104,9 @@ export const BufferRequirements: {
|
|
|
96
104
|
export type BufferRequirements = BufferRequirements$instance;
|
|
97
105
|
|
|
98
106
|
export interface NestedReadScope$instance {
|
|
107
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
108
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
109
|
+
|
|
99
110
|
Dispose(): void;
|
|
100
111
|
DisposeAsync(): ValueTask;
|
|
101
112
|
}
|
|
@@ -109,6 +120,8 @@ export const NestedReadScope: {
|
|
|
109
120
|
export type NestedReadScope = NestedReadScope$instance;
|
|
110
121
|
|
|
111
122
|
export interface NestedWriteScope$instance {
|
|
123
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
124
|
+
|
|
112
125
|
Dispose(): void;
|
|
113
126
|
}
|
|
114
127
|
|
|
@@ -135,6 +148,8 @@ export const PgConverterResolution: {
|
|
|
135
148
|
export type PgConverterResolution = PgConverterResolution$instance;
|
|
136
149
|
|
|
137
150
|
export interface Size$instance {
|
|
151
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
152
|
+
|
|
138
153
|
readonly Kind: SizeKind;
|
|
139
154
|
readonly Value: int;
|
|
140
155
|
Combine(other: Size): Size;
|
|
@@ -176,7 +191,7 @@ export interface TypeInfoMapping$instance {
|
|
|
176
191
|
MatchRequirement: MatchRequirement;
|
|
177
192
|
Type: Type;
|
|
178
193
|
get TypeMatchPredicate(): Func<Type | undefined, System_Internal.Boolean> | undefined;
|
|
179
|
-
set TypeMatchPredicate(value: Func<Type | undefined, System_Internal.Boolean>);
|
|
194
|
+
set TypeMatchPredicate(value: Func<Type | undefined, System_Internal.Boolean> | undefined);
|
|
180
195
|
DataTypeNameEquals(dataTypeName: string): boolean;
|
|
181
196
|
TypeEquals(type: Type): boolean;
|
|
182
197
|
}
|
|
@@ -194,7 +209,7 @@ export interface ValueMetadata$instance {
|
|
|
194
209
|
Format: DataFormat;
|
|
195
210
|
Size: Size;
|
|
196
211
|
get WriteState(): unknown | undefined;
|
|
197
|
-
set WriteState(value: unknown);
|
|
212
|
+
set WriteState(value: unknown | undefined);
|
|
198
213
|
}
|
|
199
214
|
|
|
200
215
|
|
|
@@ -210,26 +225,22 @@ export interface DbTypeResolverFactory$instance {
|
|
|
210
225
|
}
|
|
211
226
|
|
|
212
227
|
|
|
213
|
-
export const DbTypeResolverFactory: {
|
|
214
|
-
new(): DbTypeResolverFactory;
|
|
228
|
+
export const DbTypeResolverFactory: (abstract new() => DbTypeResolverFactory) & {
|
|
215
229
|
};
|
|
216
230
|
|
|
217
231
|
|
|
218
232
|
export type DbTypeResolverFactory = DbTypeResolverFactory$instance;
|
|
219
233
|
|
|
220
|
-
export
|
|
221
|
-
|
|
222
|
-
}
|
|
223
|
-
|
|
234
|
+
export interface DynamicTypeInfoResolver$instance {
|
|
235
|
+
readonly __tsonic_iface_Npgsql_Internal_IPgTypeInfoResolver: never;
|
|
224
236
|
|
|
225
|
-
|
|
237
|
+
GetMappings(type: Type, dataTypeName: DataTypeName, options: PgSerializerOptions): unknown | undefined;
|
|
226
238
|
GetTypeInfo(type: Type, dataTypeName: Nullable<DataTypeName>, options: PgSerializerOptions): PgTypeInfo | undefined;
|
|
227
239
|
}
|
|
228
240
|
|
|
229
241
|
|
|
230
|
-
export const DynamicTypeInfoResolver: {
|
|
231
|
-
|
|
232
|
-
CreateCollection(baseCollection?: TypeInfoMappingCollection): DynamicTypeInfoResolver_DynamicMappingCollection;
|
|
242
|
+
export const DynamicTypeInfoResolver: (abstract new() => DynamicTypeInfoResolver) & {
|
|
243
|
+
CreateCollection(baseCollection?: TypeInfoMappingCollection): unknown;
|
|
233
244
|
IsArrayDataTypeName(dataTypeName: DataTypeName, options: PgSerializerOptions, elementDataTypeName: DataTypeName): boolean;
|
|
234
245
|
IsArrayLikeType(type: Type, elementType: Type): boolean;
|
|
235
246
|
IsTypeOrNullableOfType(type: Type, predicate: Func<Type, System_Internal.Boolean>, matchedType: Type): boolean;
|
|
@@ -255,18 +266,12 @@ export interface NpgsqlConnector$instance {
|
|
|
255
266
|
|
|
256
267
|
|
|
257
268
|
export const NpgsqlConnector: {
|
|
258
|
-
new(): NpgsqlConnector;
|
|
259
269
|
};
|
|
260
270
|
|
|
261
271
|
|
|
262
272
|
export type NpgsqlConnector = NpgsqlConnector$instance;
|
|
263
273
|
|
|
264
|
-
export
|
|
265
|
-
protected abstract GetTypes(): IEnumerable<PostgresType>;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
export interface NpgsqlDatabaseInfo$instance extends NpgsqlDatabaseInfo$protected {
|
|
274
|
+
export interface NpgsqlDatabaseInfo$instance {
|
|
270
275
|
HasIntegerDateTimes: boolean;
|
|
271
276
|
readonly Host: string;
|
|
272
277
|
readonly Name: string;
|
|
@@ -285,13 +290,12 @@ export interface NpgsqlDatabaseInfo$instance extends NpgsqlDatabaseInfo$protecte
|
|
|
285
290
|
readonly Version: Version;
|
|
286
291
|
GetPostgresType(oid: uint): PostgresType;
|
|
287
292
|
GetPostgresType(pgName: string): PostgresType;
|
|
293
|
+
GetTypes(): IEnumerable<PostgresType>;
|
|
288
294
|
TryGetPostgresTypeByName(pgName: string, pgType: PostgresType): boolean;
|
|
289
295
|
}
|
|
290
296
|
|
|
291
297
|
|
|
292
|
-
export const NpgsqlDatabaseInfo: {
|
|
293
|
-
new(host: string, port: int, databaseName: string, version: Version): NpgsqlDatabaseInfo;
|
|
294
|
-
new(host: string, port: int, databaseName: string, version: Version, serverVersion: string): NpgsqlDatabaseInfo;
|
|
298
|
+
export const NpgsqlDatabaseInfo: (abstract new(host: string, port: int, databaseName: string, version: Version) => NpgsqlDatabaseInfo) & (abstract new(host: string, port: int, databaseName: string, version: Version, serverVersion: string) => NpgsqlDatabaseInfo) & {
|
|
295
299
|
ParseServerVersion(value: string): Version;
|
|
296
300
|
RegisterFactory(factory: INpgsqlDatabaseInfoFactory): void;
|
|
297
301
|
};
|
|
@@ -299,24 +303,19 @@ export const NpgsqlDatabaseInfo: {
|
|
|
299
303
|
|
|
300
304
|
export type NpgsqlDatabaseInfo = NpgsqlDatabaseInfo$instance;
|
|
301
305
|
|
|
302
|
-
export
|
|
303
|
-
protected abstract ReadCore(reader: PgReader): T;
|
|
304
|
-
protected abstract WriteCore(writer: PgWriter, value: T): void;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
export interface PgBufferedConverter_1$instance<T> extends PgBufferedConverter_1$protected<T>, PgConverter_1<T> {
|
|
306
|
+
export interface PgBufferedConverter_1$instance<T> extends PgConverter_1<T> {
|
|
309
307
|
GetSize(context: SizeContext, value: T, writeState: unknown): Size;
|
|
310
308
|
Read(reader: PgReader): T;
|
|
311
309
|
ReadAsync(reader: PgReader, cancellationToken?: CancellationToken): ValueTask<T>;
|
|
312
310
|
ReadAsync(reader: PgReader, cancellationToken?: CancellationToken): ValueTask<T>;
|
|
311
|
+
ReadCore(reader: PgReader): T;
|
|
313
312
|
Write(writer: PgWriter, value: T): void;
|
|
314
313
|
WriteAsync(writer: PgWriter, value: T, cancellationToken?: CancellationToken): ValueTask;
|
|
314
|
+
WriteCore(writer: PgWriter, value: T): void;
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
export const PgBufferedConverter_1: {
|
|
319
|
-
new<T>(customDbNullPredicate: boolean): PgBufferedConverter_1<T>;
|
|
318
|
+
export const PgBufferedConverter_1: (abstract new<T>(customDbNullPredicate: boolean) => PgBufferedConverter_1<T>) & {
|
|
320
319
|
};
|
|
321
320
|
|
|
322
321
|
|
|
@@ -334,14 +333,10 @@ export const PgConverter: {
|
|
|
334
333
|
|
|
335
334
|
export type PgConverter = PgConverter$instance;
|
|
336
335
|
|
|
337
|
-
export
|
|
338
|
-
protected IsDbNullValue(value: T, writeState: unknown): boolean;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export interface PgConverter_1$instance<T> extends PgConverter_1$protected<T>, PgConverter {
|
|
336
|
+
export interface PgConverter_1$instance<T> extends PgConverter {
|
|
343
337
|
GetSize(context: SizeContext, value: T, writeState: unknown): Size;
|
|
344
338
|
IsDbNull(value: T, writeState: unknown): boolean;
|
|
339
|
+
IsDbNullValue(value: T, writeState: unknown): boolean;
|
|
345
340
|
Read(reader: PgReader): T;
|
|
346
341
|
ReadAsync(reader: PgReader, cancellationToken?: CancellationToken): ValueTask<T>;
|
|
347
342
|
Write(writer: PgWriter, value: T): void;
|
|
@@ -373,8 +368,7 @@ export interface PgConverterResolver_1$instance<T> extends PgConverterResolver {
|
|
|
373
368
|
}
|
|
374
369
|
|
|
375
370
|
|
|
376
|
-
export const PgConverterResolver_1: {
|
|
377
|
-
new<T>(): PgConverterResolver_1<T>;
|
|
371
|
+
export const PgConverterResolver_1: (abstract new<T>() => PgConverterResolver_1<T>) & {
|
|
378
372
|
};
|
|
379
373
|
|
|
380
374
|
|
|
@@ -420,7 +414,6 @@ export interface PgReader$instance {
|
|
|
420
414
|
|
|
421
415
|
|
|
422
416
|
export const PgReader: {
|
|
423
|
-
new(): PgReader;
|
|
424
417
|
};
|
|
425
418
|
|
|
426
419
|
|
|
@@ -465,7 +458,6 @@ export interface PgSerializerOptions$instance {
|
|
|
465
458
|
|
|
466
459
|
|
|
467
460
|
export const PgSerializerOptions: {
|
|
468
|
-
new(): PgSerializerOptions;
|
|
469
461
|
IsWellKnownTextType(type: Type): boolean;
|
|
470
462
|
};
|
|
471
463
|
|
|
@@ -477,8 +469,7 @@ export interface PgStreamingConverter_1$instance<T> extends PgConverter_1<T> {
|
|
|
477
469
|
}
|
|
478
470
|
|
|
479
471
|
|
|
480
|
-
export const PgStreamingConverter_1: {
|
|
481
|
-
new<T>(customDbNullPredicate: boolean): PgStreamingConverter_1<T>;
|
|
472
|
+
export const PgStreamingConverter_1: (abstract new<T>(customDbNullPredicate: boolean) => PgStreamingConverter_1<T>) & {
|
|
482
473
|
};
|
|
483
474
|
|
|
484
475
|
|
|
@@ -514,8 +505,7 @@ export interface PgTypeInfoResolverFactory$instance {
|
|
|
514
505
|
}
|
|
515
506
|
|
|
516
507
|
|
|
517
|
-
export const PgTypeInfoResolverFactory: {
|
|
518
|
-
new(): PgTypeInfoResolverFactory;
|
|
508
|
+
export const PgTypeInfoResolverFactory: (abstract new() => PgTypeInfoResolverFactory) & {
|
|
519
509
|
};
|
|
520
510
|
|
|
521
511
|
|
|
@@ -548,7 +538,6 @@ export interface PgWriter$instance {
|
|
|
548
538
|
|
|
549
539
|
|
|
550
540
|
export const PgWriter: {
|
|
551
|
-
new(): PgWriter;
|
|
552
541
|
};
|
|
553
542
|
|
|
554
543
|
|
|
@@ -10,6 +10,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
10
10
|
import type { Boolean as ClrBoolean, IEquatable, Int32, Object as ClrObject, String as ClrString, UInt32, ValueType } from "@tsonic/dotnet/System.js";
|
|
11
11
|
|
|
12
12
|
export interface DataTypeName$instance {
|
|
13
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
14
|
+
|
|
13
15
|
readonly DisplayName: string;
|
|
14
16
|
readonly IsArray: boolean;
|
|
15
17
|
readonly IsUnqualified: boolean;
|
|
@@ -51,6 +53,8 @@ export const Field: {
|
|
|
51
53
|
export type Field = Field$instance;
|
|
52
54
|
|
|
53
55
|
export interface Oid$instance {
|
|
56
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
57
|
+
|
|
54
58
|
Value: uint;
|
|
55
59
|
Equals(other: Oid): boolean;
|
|
56
60
|
Equals(obj: unknown): boolean;
|
|
@@ -68,6 +72,8 @@ export const Oid: {
|
|
|
68
72
|
export type Oid = Oid$instance;
|
|
69
73
|
|
|
70
74
|
export interface PgTypeId$instance {
|
|
75
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
76
|
+
|
|
71
77
|
readonly DataTypeName: DataTypeName;
|
|
72
78
|
readonly IsDataTypeName: boolean;
|
|
73
79
|
readonly IsOid: boolean;
|
|
@@ -13,6 +13,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
13
13
|
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
14
14
|
|
|
15
15
|
export interface NpgsqlNullNameTranslator$instance {
|
|
16
|
+
readonly __tsonic_iface_Npgsql_INpgsqlNameTranslator: never;
|
|
17
|
+
|
|
16
18
|
TranslateMemberName(clrName: string): string;
|
|
17
19
|
TranslateTypeName(clrName: string): string;
|
|
18
20
|
}
|
|
@@ -33,6 +35,8 @@ export type NpgsqlNullNameTranslator = NpgsqlNullNameTranslator$instance & __Npg
|
|
|
33
35
|
|
|
34
36
|
|
|
35
37
|
export interface NpgsqlSnakeCaseNameTranslator$instance {
|
|
38
|
+
readonly __tsonic_iface_Npgsql_INpgsqlNameTranslator: never;
|
|
39
|
+
|
|
36
40
|
TranslateMemberName(clrName: string): string;
|
|
37
41
|
TranslateTypeName(clrName: string): string;
|
|
38
42
|
}
|
|
@@ -15,8 +15,7 @@ export interface PostgresArrayType$instance extends PostgresType {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
export const PostgresArrayType: {
|
|
19
|
-
new(ns: string, name: string, oid: uint, elementPostgresType: PostgresType): PostgresArrayType;
|
|
18
|
+
export const PostgresArrayType: (abstract new(ns: string, name: string, oid: uint, elementPostgresType: PostgresType) => PostgresArrayType) & {
|
|
20
19
|
};
|
|
21
20
|
|
|
22
21
|
|
|
@@ -26,8 +25,7 @@ export interface PostgresBaseType$instance extends PostgresType {
|
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
|
|
29
|
-
export const PostgresBaseType: {
|
|
30
|
-
new(ns: string, name: string, oid: uint): PostgresBaseType;
|
|
28
|
+
export const PostgresBaseType: (abstract new(ns: string, name: string, oid: uint) => PostgresBaseType) & {
|
|
31
29
|
};
|
|
32
30
|
|
|
33
31
|
|
|
@@ -39,7 +37,6 @@ export interface PostgresCompositeType$instance extends PostgresType {
|
|
|
39
37
|
|
|
40
38
|
|
|
41
39
|
export const PostgresCompositeType: {
|
|
42
|
-
new(): PostgresCompositeType;
|
|
43
40
|
};
|
|
44
41
|
|
|
45
42
|
|
|
@@ -53,7 +50,6 @@ export interface PostgresCompositeType_Field$instance {
|
|
|
53
50
|
|
|
54
51
|
|
|
55
52
|
export const PostgresCompositeType_Field: {
|
|
56
|
-
new(): PostgresCompositeType_Field;
|
|
57
53
|
};
|
|
58
54
|
|
|
59
55
|
|
|
@@ -65,8 +61,7 @@ export interface PostgresDomainType$instance extends PostgresType {
|
|
|
65
61
|
}
|
|
66
62
|
|
|
67
63
|
|
|
68
|
-
export const PostgresDomainType: {
|
|
69
|
-
new(ns: string, name: string, oid: uint, baseType: PostgresType, notNull: boolean): PostgresDomainType;
|
|
64
|
+
export const PostgresDomainType: (abstract new(ns: string, name: string, oid: uint, baseType: PostgresType, notNull: boolean) => PostgresDomainType) & {
|
|
70
65
|
};
|
|
71
66
|
|
|
72
67
|
|
|
@@ -77,8 +72,7 @@ export interface PostgresEnumType$instance extends PostgresType {
|
|
|
77
72
|
}
|
|
78
73
|
|
|
79
74
|
|
|
80
|
-
export const PostgresEnumType: {
|
|
81
|
-
new(ns: string, name: string, oid: uint): PostgresEnumType;
|
|
75
|
+
export const PostgresEnumType: (abstract new(ns: string, name: string, oid: uint) => PostgresEnumType) & {
|
|
82
76
|
};
|
|
83
77
|
|
|
84
78
|
|
|
@@ -89,8 +83,7 @@ export interface PostgresMultirangeType$instance extends PostgresType {
|
|
|
89
83
|
}
|
|
90
84
|
|
|
91
85
|
|
|
92
|
-
export const PostgresMultirangeType: {
|
|
93
|
-
new(ns: string, name: string, oid: uint, rangePostgresType: PostgresRangeType): PostgresMultirangeType;
|
|
86
|
+
export const PostgresMultirangeType: (abstract new(ns: string, name: string, oid: uint, rangePostgresType: PostgresRangeType) => PostgresMultirangeType) & {
|
|
94
87
|
};
|
|
95
88
|
|
|
96
89
|
|
|
@@ -98,13 +91,12 @@ export type PostgresMultirangeType = PostgresMultirangeType$instance;
|
|
|
98
91
|
|
|
99
92
|
export interface PostgresRangeType$instance extends PostgresType {
|
|
100
93
|
get Multirange(): PostgresMultirangeType | undefined;
|
|
101
|
-
set Multirange(value: PostgresMultirangeType);
|
|
94
|
+
set Multirange(value: PostgresMultirangeType | undefined);
|
|
102
95
|
readonly Subtype: PostgresType;
|
|
103
96
|
}
|
|
104
97
|
|
|
105
98
|
|
|
106
|
-
export const PostgresRangeType: {
|
|
107
|
-
new(ns: string, name: string, oid: uint, subtypePostgresType: PostgresType): PostgresRangeType;
|
|
99
|
+
export const PostgresRangeType: (abstract new(ns: string, name: string, oid: uint, subtypePostgresType: PostgresType) => PostgresRangeType) & {
|
|
108
100
|
};
|
|
109
101
|
|
|
110
102
|
|
|
@@ -112,7 +104,7 @@ export type PostgresRangeType = PostgresRangeType$instance;
|
|
|
112
104
|
|
|
113
105
|
export interface PostgresType$instance {
|
|
114
106
|
get Array(): PostgresArrayType | undefined;
|
|
115
|
-
set Array(value: PostgresArrayType);
|
|
107
|
+
set Array(value: PostgresArrayType | undefined);
|
|
116
108
|
readonly DisplayName: string;
|
|
117
109
|
readonly FullName: string;
|
|
118
110
|
readonly InternalName: string;
|
|
@@ -120,7 +112,7 @@ export interface PostgresType$instance {
|
|
|
120
112
|
readonly Namespace: string;
|
|
121
113
|
readonly OID: uint;
|
|
122
114
|
get Range(): PostgresRangeType | undefined;
|
|
123
|
-
set Range(value: PostgresRangeType);
|
|
115
|
+
set Range(value: PostgresRangeType | undefined);
|
|
124
116
|
ToString(): string;
|
|
125
117
|
}
|
|
126
118
|
|
|
@@ -136,7 +128,6 @@ export interface UnknownBackendType$instance extends PostgresType {
|
|
|
136
128
|
|
|
137
129
|
|
|
138
130
|
export const UnknownBackendType: {
|
|
139
|
-
new(): UnknownBackendType;
|
|
140
131
|
};
|
|
141
132
|
|
|
142
133
|
|
|
@@ -53,6 +53,8 @@ export const TimelineHistoryFile: {
|
|
|
53
53
|
export type TimelineHistoryFile = TimelineHistoryFile$instance;
|
|
54
54
|
|
|
55
55
|
export interface LogicalReplicationConnection$instance extends ReplicationConnection {
|
|
56
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
57
|
+
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
|
|
@@ -65,6 +67,8 @@ export const LogicalReplicationConnection: {
|
|
|
65
67
|
export type LogicalReplicationConnection = LogicalReplicationConnection$instance;
|
|
66
68
|
|
|
67
69
|
export interface PhysicalReplicationConnection$instance extends ReplicationConnection {
|
|
70
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
71
|
+
|
|
68
72
|
CreateReplicationSlot(slotName: string, isTemporary?: boolean, reserveWal?: boolean, cancellationToken?: CancellationToken): Task<PhysicalReplicationSlot>;
|
|
69
73
|
ReadReplicationSlot(slotName: string, cancellationToken?: CancellationToken): Task<PhysicalReplicationSlot | undefined>;
|
|
70
74
|
StartReplication(slot: PhysicalReplicationSlot, walLocation: NpgsqlLogSequenceNumber, cancellationToken: CancellationToken, timeline?: uint): IAsyncEnumerable<XLogDataMessage>;
|
|
@@ -95,6 +99,8 @@ export const PhysicalReplicationSlot: {
|
|
|
95
99
|
export type PhysicalReplicationSlot = PhysicalReplicationSlot$instance;
|
|
96
100
|
|
|
97
101
|
export interface ReplicationConnection$instance {
|
|
102
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
103
|
+
|
|
98
104
|
CommandTimeout: TimeSpan;
|
|
99
105
|
ConnectionString: string;
|
|
100
106
|
readonly Encoding: Encoding;
|
|
@@ -130,8 +136,7 @@ export interface ReplicationMessage$instance {
|
|
|
130
136
|
}
|
|
131
137
|
|
|
132
138
|
|
|
133
|
-
export const ReplicationMessage: {
|
|
134
|
-
new(): ReplicationMessage;
|
|
139
|
+
export const ReplicationMessage: (abstract new() => ReplicationMessage) & {
|
|
135
140
|
};
|
|
136
141
|
|
|
137
142
|
|
|
@@ -157,7 +162,6 @@ export interface ReplicationSystemIdentification$instance {
|
|
|
157
162
|
|
|
158
163
|
|
|
159
164
|
export const ReplicationSystemIdentification: {
|
|
160
|
-
new(): ReplicationSystemIdentification;
|
|
161
165
|
};
|
|
162
166
|
|
|
163
167
|
|
|
@@ -22,8 +22,7 @@ export interface LogicalReplicationSlot$instance extends ReplicationSlot {
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
export const LogicalReplicationSlot: {
|
|
26
|
-
new(outputPlugin: string, replicationSlotOptions: ReplicationSlotOptions): LogicalReplicationSlot;
|
|
25
|
+
export const LogicalReplicationSlot: (abstract new(outputPlugin: string, replicationSlotOptions: ReplicationSlotOptions) => LogicalReplicationSlot) & {
|
|
27
26
|
};
|
|
28
27
|
|
|
29
28
|
|
|
@@ -43,6 +43,8 @@ export enum TupleDataKind {
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
export interface PgOutputReplicationOptions$instance {
|
|
46
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
47
|
+
|
|
46
48
|
readonly Binary: Nullable<System_Internal.Boolean>;
|
|
47
49
|
readonly Messages: Nullable<System_Internal.Boolean>;
|
|
48
50
|
readonly ProtocolVersion: PgOutputProtocolVersion;
|
|
@@ -72,20 +74,20 @@ export interface PgOutputReplicationSlot$instance extends LogicalReplicationSlot
|
|
|
72
74
|
export const PgOutputReplicationSlot: {
|
|
73
75
|
new(slotName: string): PgOutputReplicationSlot;
|
|
74
76
|
new(options: ReplicationSlotOptions): PgOutputReplicationSlot;
|
|
75
|
-
new(slot: PgOutputReplicationSlot): PgOutputReplicationSlot;
|
|
76
77
|
};
|
|
77
78
|
|
|
78
79
|
|
|
79
80
|
export type PgOutputReplicationSlot = PgOutputReplicationSlot$instance;
|
|
80
81
|
|
|
81
82
|
export interface ReplicationTuple$instance {
|
|
83
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
84
|
+
|
|
82
85
|
NumColumns: ushort;
|
|
83
86
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<ReplicationValue>;
|
|
84
87
|
}
|
|
85
88
|
|
|
86
89
|
|
|
87
90
|
export const ReplicationTuple: {
|
|
88
|
-
new(): ReplicationTuple;
|
|
89
91
|
};
|
|
90
92
|
|
|
91
93
|
|
|
@@ -108,7 +110,6 @@ export interface ReplicationValue$instance {
|
|
|
108
110
|
|
|
109
111
|
|
|
110
112
|
export const ReplicationValue: {
|
|
111
|
-
new(): ReplicationValue;
|
|
112
113
|
};
|
|
113
114
|
|
|
114
115
|
|