@tsonic/efcore-npgsql 10.0.1 → 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/bindings.json +737 -0
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +20 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +5 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Npgsql/bindings.json +3099 -41
- package/Npgsql/internal/index.d.ts +231 -75
- package/Npgsql.BackendMessages/bindings.json +7 -0
- package/Npgsql.BackendMessages/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/bindings.json +39 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +4 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/bindings.json +179 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +11 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal/bindings.json +22 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal/bindings.json +8 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/bindings.json +59 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +7 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/bindings.json +275 -16
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +37 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal.d.ts +1 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/bindings.json +120 -31
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +9 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/bindings.json +150 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +8 -11
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/bindings.json +480 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +49 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions.d.ts +4 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/bindings.json +85 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/bindings.json +763 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +44 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/bindings.json +94 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +9 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/bindings.json +42 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +10 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.d.ts +5 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/bindings.json +31 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +2 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/bindings.json +410 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +69 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/bindings.json +53 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/bindings.json +1093 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +91 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/bindings.json +2356 -296
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +112 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal.d.ts +6 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/bindings.json +25 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/bindings.json +508 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +55 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/bindings.json +23 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/bindings.json +4017 -129
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +210 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.d.ts +5 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.ValueConversion/bindings.json +16 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/bindings.json +257 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +24 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal.d.ts +5 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration/bindings.json +20 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/bindings.json +137 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +21 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal.d.ts +3 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.d.ts +1 -1
- package/Npgsql.Internal/bindings.json +884 -15
- package/Npgsql.Internal/internal/index.d.ts +41 -18
- package/Npgsql.Internal.Postgres/bindings.json +81 -0
- package/Npgsql.Internal.Postgres/internal/index.d.ts +6 -0
- package/Npgsql.Internal.d.ts +1 -1
- package/Npgsql.NameTranslation/bindings.json +30 -0
- package/Npgsql.NameTranslation/internal/index.d.ts +4 -0
- package/Npgsql.PostgresTypes/bindings.json +144 -12
- package/Npgsql.PostgresTypes/internal/index.d.ts +12 -18
- package/Npgsql.Replication/bindings.json +166 -11
- package/Npgsql.Replication/internal/index.d.ts +12 -7
- package/Npgsql.Replication.Internal/bindings.json +26 -1
- package/Npgsql.Replication.Internal/internal/index.d.ts +1 -1
- package/Npgsql.Replication.PgOutput/bindings.json +160 -6
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +7 -5
- package/Npgsql.Replication.PgOutput.Messages/bindings.json +513 -83
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +43 -66
- package/Npgsql.Replication.TestDecoding/bindings.json +40 -2
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +3 -1
- package/Npgsql.Schema/bindings.json +87 -54
- package/Npgsql.Schema/internal/index.d.ts +34 -28
- package/Npgsql.TypeMapping/bindings.json +17 -0
- package/Npgsql.TypeMapping/internal/index.d.ts +2 -0
- package/Npgsql.Util/bindings.json +4 -0
- package/Npgsql.d.ts +1 -1
- package/NpgsqlTypes/bindings.json +871 -4
- package/NpgsqlTypes/internal/index.d.ts +67 -7
- package/__internal/extensions/index.d.ts +752 -12
- package/package.json +1 -1
|
@@ -92,13 +92,12 @@ export const RelationMessageColumn: {
|
|
|
92
92
|
export type RelationMessageColumn = RelationMessageColumn$instance;
|
|
93
93
|
|
|
94
94
|
export interface BeginMessage$instance extends TransactionControlMessage {
|
|
95
|
-
|
|
96
|
-
|
|
95
|
+
TransactionCommitTimestamp: DateTime;
|
|
96
|
+
TransactionFinalLsn: NpgsqlLogSequenceNumber;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
|
|
100
100
|
export const BeginMessage: {
|
|
101
|
-
new(): BeginMessage;
|
|
102
101
|
};
|
|
103
102
|
|
|
104
103
|
|
|
@@ -109,22 +108,20 @@ export interface BeginPrepareMessage$instance extends PrepareMessageBase {
|
|
|
109
108
|
|
|
110
109
|
|
|
111
110
|
export const BeginPrepareMessage: {
|
|
112
|
-
new(): BeginPrepareMessage;
|
|
113
111
|
};
|
|
114
112
|
|
|
115
113
|
|
|
116
114
|
export type BeginPrepareMessage = BeginPrepareMessage$instance;
|
|
117
115
|
|
|
118
116
|
export interface CommitMessage$instance extends PgOutputReplicationMessage {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
117
|
+
CommitLsn: NpgsqlLogSequenceNumber;
|
|
118
|
+
Flags: CommitMessage_CommitFlags;
|
|
119
|
+
TransactionCommitTimestamp: DateTime;
|
|
120
|
+
TransactionEndLsn: NpgsqlLogSequenceNumber;
|
|
123
121
|
}
|
|
124
122
|
|
|
125
123
|
|
|
126
124
|
export const CommitMessage: {
|
|
127
|
-
new(): CommitMessage;
|
|
128
125
|
};
|
|
129
126
|
|
|
130
127
|
|
|
@@ -133,13 +130,12 @@ export type CommitMessage = CommitMessage$instance;
|
|
|
133
130
|
export interface CommitPreparedMessage$instance extends PreparedTransactionControlMessage {
|
|
134
131
|
readonly CommitPreparedEndLsn: NpgsqlLogSequenceNumber;
|
|
135
132
|
readonly CommitPreparedLsn: NpgsqlLogSequenceNumber;
|
|
136
|
-
|
|
133
|
+
Flags: CommitPreparedMessage_CommitPreparedFlags;
|
|
137
134
|
readonly TransactionCommitTimestamp: DateTime;
|
|
138
135
|
}
|
|
139
136
|
|
|
140
137
|
|
|
141
138
|
export const CommitPreparedMessage: {
|
|
142
|
-
new(): CommitPreparedMessage;
|
|
143
139
|
};
|
|
144
140
|
|
|
145
141
|
|
|
@@ -151,14 +147,13 @@ export interface DefaultUpdateMessage$instance extends UpdateMessage {
|
|
|
151
147
|
|
|
152
148
|
|
|
153
149
|
export const DefaultUpdateMessage: {
|
|
154
|
-
new(): DefaultUpdateMessage;
|
|
155
150
|
};
|
|
156
151
|
|
|
157
152
|
|
|
158
153
|
export type DefaultUpdateMessage = DefaultUpdateMessage$instance;
|
|
159
154
|
|
|
160
155
|
export interface DeleteMessage$instance extends TransactionalMessage {
|
|
161
|
-
|
|
156
|
+
Relation: RelationMessage;
|
|
162
157
|
}
|
|
163
158
|
|
|
164
159
|
|
|
@@ -174,7 +169,6 @@ export interface FullDeleteMessage$instance extends DeleteMessage {
|
|
|
174
169
|
|
|
175
170
|
|
|
176
171
|
export const FullDeleteMessage: {
|
|
177
|
-
new(): FullDeleteMessage;
|
|
178
172
|
};
|
|
179
173
|
|
|
180
174
|
|
|
@@ -187,7 +181,6 @@ export interface FullUpdateMessage$instance extends UpdateMessage {
|
|
|
187
181
|
|
|
188
182
|
|
|
189
183
|
export const FullUpdateMessage: {
|
|
190
|
-
new(): FullUpdateMessage;
|
|
191
184
|
};
|
|
192
185
|
|
|
193
186
|
|
|
@@ -200,7 +193,6 @@ export interface IndexUpdateMessage$instance extends UpdateMessage {
|
|
|
200
193
|
|
|
201
194
|
|
|
202
195
|
export const IndexUpdateMessage: {
|
|
203
|
-
new(): IndexUpdateMessage;
|
|
204
196
|
};
|
|
205
197
|
|
|
206
198
|
|
|
@@ -208,12 +200,11 @@ export type IndexUpdateMessage = IndexUpdateMessage$instance;
|
|
|
208
200
|
|
|
209
201
|
export interface InsertMessage$instance extends TransactionalMessage {
|
|
210
202
|
readonly NewRow: ReplicationTuple;
|
|
211
|
-
|
|
203
|
+
Relation: RelationMessage;
|
|
212
204
|
}
|
|
213
205
|
|
|
214
206
|
|
|
215
207
|
export const InsertMessage: {
|
|
216
|
-
new(): InsertMessage;
|
|
217
208
|
};
|
|
218
209
|
|
|
219
210
|
|
|
@@ -225,48 +216,44 @@ export interface KeyDeleteMessage$instance extends DeleteMessage {
|
|
|
225
216
|
|
|
226
217
|
|
|
227
218
|
export const KeyDeleteMessage: {
|
|
228
|
-
new(): KeyDeleteMessage;
|
|
229
219
|
};
|
|
230
220
|
|
|
231
221
|
|
|
232
222
|
export type KeyDeleteMessage = KeyDeleteMessage$instance;
|
|
233
223
|
|
|
234
224
|
export interface LogicalDecodingMessage$instance extends TransactionalMessage {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
225
|
+
Data: Stream;
|
|
226
|
+
Flags: byte;
|
|
227
|
+
MessageLsn: NpgsqlLogSequenceNumber;
|
|
228
|
+
Prefix: string;
|
|
239
229
|
}
|
|
240
230
|
|
|
241
231
|
|
|
242
232
|
export const LogicalDecodingMessage: {
|
|
243
|
-
new(): LogicalDecodingMessage;
|
|
244
233
|
};
|
|
245
234
|
|
|
246
235
|
|
|
247
236
|
export type LogicalDecodingMessage = LogicalDecodingMessage$instance;
|
|
248
237
|
|
|
249
238
|
export interface OriginMessage$instance extends PgOutputReplicationMessage {
|
|
250
|
-
|
|
251
|
-
|
|
239
|
+
OriginCommitLsn: NpgsqlLogSequenceNumber;
|
|
240
|
+
OriginName: string;
|
|
252
241
|
}
|
|
253
242
|
|
|
254
243
|
|
|
255
244
|
export const OriginMessage: {
|
|
256
|
-
new(): OriginMessage;
|
|
257
245
|
};
|
|
258
246
|
|
|
259
247
|
|
|
260
248
|
export type OriginMessage = OriginMessage$instance;
|
|
261
249
|
|
|
262
250
|
export interface ParallelStreamAbortMessage$instance extends StreamAbortMessage {
|
|
263
|
-
|
|
264
|
-
|
|
251
|
+
AbortLsn: NpgsqlLogSequenceNumber;
|
|
252
|
+
AbortTimestamp: DateTime;
|
|
265
253
|
}
|
|
266
254
|
|
|
267
255
|
|
|
268
256
|
export const ParallelStreamAbortMessage: {
|
|
269
|
-
new(): ParallelStreamAbortMessage;
|
|
270
257
|
};
|
|
271
258
|
|
|
272
259
|
|
|
@@ -277,14 +264,14 @@ export interface PgOutputReplicationMessage$instance extends ReplicationMessage
|
|
|
277
264
|
}
|
|
278
265
|
|
|
279
266
|
|
|
280
|
-
export const PgOutputReplicationMessage: {
|
|
267
|
+
export const PgOutputReplicationMessage: (abstract new() => PgOutputReplicationMessage) & {
|
|
281
268
|
};
|
|
282
269
|
|
|
283
270
|
|
|
284
271
|
export type PgOutputReplicationMessage = PgOutputReplicationMessage$instance;
|
|
285
272
|
|
|
286
273
|
export interface PreparedTransactionControlMessage$instance extends TransactionControlMessage {
|
|
287
|
-
|
|
274
|
+
TransactionGid: string;
|
|
288
275
|
}
|
|
289
276
|
|
|
290
277
|
|
|
@@ -295,12 +282,11 @@ export const PreparedTransactionControlMessage: {
|
|
|
295
282
|
export type PreparedTransactionControlMessage = PreparedTransactionControlMessage$instance;
|
|
296
283
|
|
|
297
284
|
export interface PrepareMessage$instance extends PrepareMessageBase {
|
|
298
|
-
|
|
285
|
+
Flags: PrepareMessage_PrepareFlags;
|
|
299
286
|
}
|
|
300
287
|
|
|
301
288
|
|
|
302
289
|
export const PrepareMessage: {
|
|
303
|
-
new(): PrepareMessage;
|
|
304
290
|
};
|
|
305
291
|
|
|
306
292
|
|
|
@@ -321,82 +307,76 @@ export type PrepareMessageBase = PrepareMessageBase$instance;
|
|
|
321
307
|
|
|
322
308
|
export interface RelationMessage$instance extends TransactionalMessage {
|
|
323
309
|
readonly Columns: IReadOnlyList<RelationMessage_Column>;
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
310
|
+
Namespace: string;
|
|
311
|
+
RelationId: uint;
|
|
312
|
+
RelationName: string;
|
|
313
|
+
ReplicaIdentity: RelationMessage_ReplicaIdentitySetting;
|
|
328
314
|
}
|
|
329
315
|
|
|
330
316
|
|
|
331
317
|
export const RelationMessage: {
|
|
332
|
-
new(): RelationMessage;
|
|
333
318
|
};
|
|
334
319
|
|
|
335
320
|
|
|
336
321
|
export type RelationMessage = RelationMessage$instance;
|
|
337
322
|
|
|
338
323
|
export interface RollbackPreparedMessage$instance extends PreparedTransactionControlMessage {
|
|
339
|
-
|
|
324
|
+
Flags: RollbackPreparedMessage_RollbackPreparedFlags;
|
|
340
325
|
readonly PreparedTransactionEndLsn: NpgsqlLogSequenceNumber;
|
|
341
326
|
readonly RollbackPreparedEndLsn: NpgsqlLogSequenceNumber;
|
|
342
327
|
readonly TransactionPrepareTimestamp: DateTime;
|
|
343
|
-
|
|
328
|
+
TransactionRollbackTimestamp: DateTime;
|
|
344
329
|
}
|
|
345
330
|
|
|
346
331
|
|
|
347
332
|
export const RollbackPreparedMessage: {
|
|
348
|
-
new(): RollbackPreparedMessage;
|
|
349
333
|
};
|
|
350
334
|
|
|
351
335
|
|
|
352
336
|
export type RollbackPreparedMessage = RollbackPreparedMessage$instance;
|
|
353
337
|
|
|
354
338
|
export interface StreamAbortMessage$instance extends TransactionControlMessage {
|
|
355
|
-
|
|
339
|
+
SubtransactionXid: uint;
|
|
356
340
|
}
|
|
357
341
|
|
|
358
342
|
|
|
359
343
|
export const StreamAbortMessage: {
|
|
360
|
-
new(): StreamAbortMessage;
|
|
361
344
|
};
|
|
362
345
|
|
|
363
346
|
|
|
364
347
|
export type StreamAbortMessage = StreamAbortMessage$instance;
|
|
365
348
|
|
|
366
349
|
export interface StreamCommitMessage$instance extends TransactionControlMessage {
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
350
|
+
CommitLsn: NpgsqlLogSequenceNumber;
|
|
351
|
+
Flags: byte;
|
|
352
|
+
TransactionCommitTimestamp: DateTime;
|
|
353
|
+
TransactionEndLsn: NpgsqlLogSequenceNumber;
|
|
371
354
|
}
|
|
372
355
|
|
|
373
356
|
|
|
374
357
|
export const StreamCommitMessage: {
|
|
375
|
-
new(): StreamCommitMessage;
|
|
376
358
|
};
|
|
377
359
|
|
|
378
360
|
|
|
379
361
|
export type StreamCommitMessage = StreamCommitMessage$instance;
|
|
380
362
|
|
|
381
363
|
export interface StreamPrepareMessage$instance extends PrepareMessageBase {
|
|
382
|
-
|
|
364
|
+
Flags: StreamPrepareMessage_StreamPrepareFlags;
|
|
383
365
|
}
|
|
384
366
|
|
|
385
367
|
|
|
386
368
|
export const StreamPrepareMessage: {
|
|
387
|
-
new(): StreamPrepareMessage;
|
|
388
369
|
};
|
|
389
370
|
|
|
390
371
|
|
|
391
372
|
export type StreamPrepareMessage = StreamPrepareMessage$instance;
|
|
392
373
|
|
|
393
374
|
export interface StreamStartMessage$instance extends TransactionControlMessage {
|
|
394
|
-
|
|
375
|
+
StreamSegmentIndicator: byte;
|
|
395
376
|
}
|
|
396
377
|
|
|
397
378
|
|
|
398
379
|
export const StreamStartMessage: {
|
|
399
|
-
new(): StreamStartMessage;
|
|
400
380
|
};
|
|
401
381
|
|
|
402
382
|
|
|
@@ -407,56 +387,53 @@ export interface StreamStopMessage$instance extends PgOutputReplicationMessage {
|
|
|
407
387
|
|
|
408
388
|
|
|
409
389
|
export const StreamStopMessage: {
|
|
410
|
-
new(): StreamStopMessage;
|
|
411
390
|
};
|
|
412
391
|
|
|
413
392
|
|
|
414
393
|
export type StreamStopMessage = StreamStopMessage$instance;
|
|
415
394
|
|
|
416
395
|
export interface TransactionalMessage$instance extends PgOutputReplicationMessage {
|
|
417
|
-
|
|
396
|
+
TransactionXid: Nullable<System_Internal.UInt32>;
|
|
418
397
|
}
|
|
419
398
|
|
|
420
399
|
|
|
421
|
-
export const TransactionalMessage: {
|
|
400
|
+
export const TransactionalMessage: (abstract new() => TransactionalMessage) & {
|
|
422
401
|
};
|
|
423
402
|
|
|
424
403
|
|
|
425
404
|
export type TransactionalMessage = TransactionalMessage$instance;
|
|
426
405
|
|
|
427
406
|
export interface TransactionControlMessage$instance extends PgOutputReplicationMessage {
|
|
428
|
-
|
|
407
|
+
TransactionXid: uint;
|
|
429
408
|
}
|
|
430
409
|
|
|
431
410
|
|
|
432
|
-
export const TransactionControlMessage: {
|
|
411
|
+
export const TransactionControlMessage: (abstract new() => TransactionControlMessage) & {
|
|
433
412
|
};
|
|
434
413
|
|
|
435
414
|
|
|
436
415
|
export type TransactionControlMessage = TransactionControlMessage$instance;
|
|
437
416
|
|
|
438
417
|
export interface TruncateMessage$instance extends TransactionalMessage {
|
|
439
|
-
|
|
440
|
-
|
|
418
|
+
Options: TruncateMessage_TruncateOptions;
|
|
419
|
+
Relations: IReadOnlyList<RelationMessage>;
|
|
441
420
|
}
|
|
442
421
|
|
|
443
422
|
|
|
444
423
|
export const TruncateMessage: {
|
|
445
|
-
new(): TruncateMessage;
|
|
446
424
|
};
|
|
447
425
|
|
|
448
426
|
|
|
449
427
|
export type TruncateMessage = TruncateMessage$instance;
|
|
450
428
|
|
|
451
429
|
export interface TypeMessage$instance extends TransactionalMessage {
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
430
|
+
Name: string;
|
|
431
|
+
Namespace: string;
|
|
432
|
+
TypeId: uint;
|
|
455
433
|
}
|
|
456
434
|
|
|
457
435
|
|
|
458
436
|
export const TypeMessage: {
|
|
459
|
-
new(): TypeMessage;
|
|
460
437
|
};
|
|
461
438
|
|
|
462
439
|
|
|
@@ -464,7 +441,7 @@ export type TypeMessage = TypeMessage$instance;
|
|
|
464
441
|
|
|
465
442
|
export interface UpdateMessage$instance extends TransactionalMessage {
|
|
466
443
|
readonly NewRow: ReplicationTuple;
|
|
467
|
-
|
|
444
|
+
Relation: RelationMessage;
|
|
468
445
|
}
|
|
469
446
|
|
|
470
447
|
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"isSealed": true,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"baseType": {
|
|
19
|
+
"stableId": "Npgsql:Npgsql.Replication.ReplicationMessage",
|
|
20
|
+
"clrName": "Npgsql.Replication.ReplicationMessage"
|
|
21
|
+
},
|
|
18
22
|
"methods": [
|
|
19
23
|
{
|
|
20
24
|
"stableId": "Npgsql:Npgsql.Replication.TestDecoding.TestDecodingData::ToString():System.String",
|
|
@@ -31,6 +35,7 @@
|
|
|
31
35
|
"isVirtual": true,
|
|
32
36
|
"isOverride": true,
|
|
33
37
|
"isSealed": false,
|
|
38
|
+
"visibility": "Public",
|
|
34
39
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingData",
|
|
35
40
|
"declaringAssemblyName": "Npgsql",
|
|
36
41
|
"isExtensionMethod": false
|
|
@@ -50,6 +55,7 @@
|
|
|
50
55
|
"isVirtual": false,
|
|
51
56
|
"isOverride": false,
|
|
52
57
|
"isSealed": false,
|
|
58
|
+
"visibility": "Public",
|
|
53
59
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingData",
|
|
54
60
|
"declaringAssemblyName": "Npgsql",
|
|
55
61
|
"isExtensionMethod": false
|
|
@@ -61,16 +67,17 @@
|
|
|
61
67
|
"clrName": "Data",
|
|
62
68
|
"metadataToken": 385876578,
|
|
63
69
|
"canonicalSignature": ":System.String",
|
|
64
|
-
"normalizedSignature": "Data|:System.String|static=false|accessor=
|
|
70
|
+
"normalizedSignature": "Data|:System.String|static=false|accessor=getset",
|
|
65
71
|
"emitScope": "ClassSurface",
|
|
66
72
|
"provenance": "Original",
|
|
67
73
|
"isIndexer": false,
|
|
68
74
|
"hasGetter": true,
|
|
69
|
-
"hasSetter":
|
|
75
|
+
"hasSetter": true,
|
|
70
76
|
"isStatic": false,
|
|
71
77
|
"isAbstract": false,
|
|
72
78
|
"isVirtual": false,
|
|
73
79
|
"isOverride": false,
|
|
80
|
+
"visibility": "Public",
|
|
74
81
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingData",
|
|
75
82
|
"declaringAssemblyName": "Npgsql"
|
|
76
83
|
}
|
|
@@ -85,6 +92,7 @@
|
|
|
85
92
|
"normalizedSignature": "constructor|():void|static=false",
|
|
86
93
|
"isStatic": false,
|
|
87
94
|
"parameterCount": 0,
|
|
95
|
+
"visibility": "Public",
|
|
88
96
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingData",
|
|
89
97
|
"declaringAssemblyName": "Npgsql"
|
|
90
98
|
}
|
|
@@ -101,6 +109,19 @@
|
|
|
101
109
|
"isSealed": false,
|
|
102
110
|
"isStatic": false,
|
|
103
111
|
"arity": 0,
|
|
112
|
+
"baseType": {
|
|
113
|
+
"stableId": "System.Private.CoreLib:System.Object",
|
|
114
|
+
"clrName": "System.Object"
|
|
115
|
+
},
|
|
116
|
+
"interfaces": [
|
|
117
|
+
{
|
|
118
|
+
"stableId": "System.Private.CoreLib:System.IEquatable\u00601",
|
|
119
|
+
"clrName": "System.IEquatable\u00601",
|
|
120
|
+
"typeArguments": [
|
|
121
|
+
"TestDecodingOptions"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
],
|
|
104
125
|
"methods": [
|
|
105
126
|
{
|
|
106
127
|
"stableId": "Npgsql:Npgsql.Replication.TestDecoding.TestDecodingOptions::Equals(Npgsql.Replication.TestDecoding.TestDecodingOptions):System.Boolean",
|
|
@@ -117,6 +138,7 @@
|
|
|
117
138
|
"isVirtual": true,
|
|
118
139
|
"isOverride": false,
|
|
119
140
|
"isSealed": true,
|
|
141
|
+
"visibility": "Public",
|
|
120
142
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
121
143
|
"declaringAssemblyName": "Npgsql",
|
|
122
144
|
"isExtensionMethod": false
|
|
@@ -136,6 +158,7 @@
|
|
|
136
158
|
"isVirtual": true,
|
|
137
159
|
"isOverride": true,
|
|
138
160
|
"isSealed": false,
|
|
161
|
+
"visibility": "Public",
|
|
139
162
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
140
163
|
"declaringAssemblyName": "Npgsql",
|
|
141
164
|
"isExtensionMethod": false
|
|
@@ -155,6 +178,7 @@
|
|
|
155
178
|
"isVirtual": true,
|
|
156
179
|
"isOverride": true,
|
|
157
180
|
"isSealed": false,
|
|
181
|
+
"visibility": "Public",
|
|
158
182
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
159
183
|
"declaringAssemblyName": "Npgsql",
|
|
160
184
|
"isExtensionMethod": false
|
|
@@ -176,6 +200,7 @@
|
|
|
176
200
|
"isAbstract": false,
|
|
177
201
|
"isVirtual": false,
|
|
178
202
|
"isOverride": false,
|
|
203
|
+
"visibility": "Public",
|
|
179
204
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
180
205
|
"declaringAssemblyName": "Npgsql"
|
|
181
206
|
},
|
|
@@ -194,6 +219,7 @@
|
|
|
194
219
|
"isAbstract": false,
|
|
195
220
|
"isVirtual": false,
|
|
196
221
|
"isOverride": false,
|
|
222
|
+
"visibility": "Public",
|
|
197
223
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
198
224
|
"declaringAssemblyName": "Npgsql"
|
|
199
225
|
},
|
|
@@ -212,6 +238,7 @@
|
|
|
212
238
|
"isAbstract": false,
|
|
213
239
|
"isVirtual": false,
|
|
214
240
|
"isOverride": false,
|
|
241
|
+
"visibility": "Public",
|
|
215
242
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
216
243
|
"declaringAssemblyName": "Npgsql"
|
|
217
244
|
},
|
|
@@ -230,6 +257,7 @@
|
|
|
230
257
|
"isAbstract": false,
|
|
231
258
|
"isVirtual": false,
|
|
232
259
|
"isOverride": false,
|
|
260
|
+
"visibility": "Public",
|
|
233
261
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
234
262
|
"declaringAssemblyName": "Npgsql"
|
|
235
263
|
},
|
|
@@ -248,6 +276,7 @@
|
|
|
248
276
|
"isAbstract": false,
|
|
249
277
|
"isVirtual": false,
|
|
250
278
|
"isOverride": false,
|
|
279
|
+
"visibility": "Public",
|
|
251
280
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
252
281
|
"declaringAssemblyName": "Npgsql"
|
|
253
282
|
},
|
|
@@ -266,6 +295,7 @@
|
|
|
266
295
|
"isAbstract": false,
|
|
267
296
|
"isVirtual": false,
|
|
268
297
|
"isOverride": false,
|
|
298
|
+
"visibility": "Public",
|
|
269
299
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
270
300
|
"declaringAssemblyName": "Npgsql"
|
|
271
301
|
},
|
|
@@ -284,6 +314,7 @@
|
|
|
284
314
|
"isAbstract": false,
|
|
285
315
|
"isVirtual": false,
|
|
286
316
|
"isOverride": false,
|
|
317
|
+
"visibility": "Public",
|
|
287
318
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
288
319
|
"declaringAssemblyName": "Npgsql"
|
|
289
320
|
}
|
|
@@ -298,6 +329,7 @@
|
|
|
298
329
|
"normalizedSignature": "constructor|(System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Nullable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):void|static=false",
|
|
299
330
|
"isStatic": false,
|
|
300
331
|
"parameterCount": 7,
|
|
332
|
+
"visibility": "Public",
|
|
301
333
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingOptions",
|
|
302
334
|
"declaringAssemblyName": "Npgsql"
|
|
303
335
|
}
|
|
@@ -314,6 +346,10 @@
|
|
|
314
346
|
"isSealed": false,
|
|
315
347
|
"isStatic": false,
|
|
316
348
|
"arity": 0,
|
|
349
|
+
"baseType": {
|
|
350
|
+
"stableId": "Npgsql:Npgsql.Replication.Internal.LogicalReplicationSlot",
|
|
351
|
+
"clrName": "Npgsql.Replication.Internal.LogicalReplicationSlot"
|
|
352
|
+
},
|
|
317
353
|
"methods": [],
|
|
318
354
|
"properties": [],
|
|
319
355
|
"fields": [],
|
|
@@ -326,6 +362,7 @@
|
|
|
326
362
|
"normalizedSignature": "constructor|(System.String):void|static=false",
|
|
327
363
|
"isStatic": false,
|
|
328
364
|
"parameterCount": 1,
|
|
365
|
+
"visibility": "Public",
|
|
329
366
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingReplicationSlot",
|
|
330
367
|
"declaringAssemblyName": "Npgsql"
|
|
331
368
|
},
|
|
@@ -336,6 +373,7 @@
|
|
|
336
373
|
"normalizedSignature": "constructor|(Npgsql.Replication.ReplicationSlotOptions):void|static=false",
|
|
337
374
|
"isStatic": false,
|
|
338
375
|
"parameterCount": 1,
|
|
376
|
+
"visibility": "Public",
|
|
339
377
|
"declaringClrType": "Npgsql.Replication.TestDecoding.TestDecodingReplicationSlot",
|
|
340
378
|
"declaringAssemblyName": "Npgsql"
|
|
341
379
|
}
|
|
@@ -15,7 +15,7 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
15
15
|
import type { Boolean as ClrBoolean, DateTime, IEquatable, Int32, Nullable, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
16
16
|
|
|
17
17
|
export interface TestDecodingData$instance extends ReplicationMessage {
|
|
18
|
-
|
|
18
|
+
Data: string;
|
|
19
19
|
Clone(): TestDecodingData;
|
|
20
20
|
ToString(): string;
|
|
21
21
|
}
|
|
@@ -29,6 +29,8 @@ export const TestDecodingData: {
|
|
|
29
29
|
export type TestDecodingData = TestDecodingData$instance;
|
|
30
30
|
|
|
31
31
|
export interface TestDecodingOptions$instance {
|
|
32
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
33
|
+
|
|
32
34
|
readonly ForceBinary: Nullable<System_Internal.Boolean>;
|
|
33
35
|
readonly IncludeRewrites: Nullable<System_Internal.Boolean>;
|
|
34
36
|
readonly IncludeTimestamp: Nullable<System_Internal.Boolean>;
|