@tsonic/efcore-sqlserver 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/Azure/internal/index.d.ts +33 -41
- package/Azure.Core/internal/index.d.ts +55 -48
- package/Azure.Core.Cryptography/internal/index.d.ts +4 -0
- package/Azure.Core.Diagnostics/internal/index.d.ts +4 -6
- package/Azure.Core.Extensions/internal/index.d.ts +8 -0
- package/Azure.Core.GeoJson/internal/index.d.ts +43 -7
- package/Azure.Core.Pipeline/internal/index.d.ts +22 -30
- package/Azure.Core.Serialization/internal/index.d.ts +8 -3
- package/Azure.Identity/internal/index.d.ts +69 -28
- package/Azure.Messaging/internal/index.d.ts +7 -11
- package/Microsoft.Data/internal/index.d.ts +2 -1
- package/Microsoft.Data.SqlClient/internal/index.d.ts +133 -123
- package/Microsoft.Data.SqlClient.Diagnostics/internal/index.d.ts +90 -15
- package/Microsoft.Data.SqlClient.Server/internal/index.d.ts +2 -0
- package/Microsoft.Data.SqlTypes/internal/index.d.ts +8 -1
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +4 -6
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +11 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +86 -73
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +47 -49
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +9 -1
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +24 -22
- package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +10 -6
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +189 -194
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +4 -5
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +115 -191
- package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +31 -32
- package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +19 -12
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Identity.Client/internal/index.d.ts +108 -108
- package/Microsoft.Identity.Client.AppConfig/internal/index.d.ts +0 -1
- package/Microsoft.Identity.Client.AuthScheme/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.AuthScheme.PoP/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +3 -2
- package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +4 -4
- package/Microsoft.Identity.Client.Kerberos/internal/index.d.ts +1 -1
- package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -2
- package/Microsoft.Identity.Client.Utils/internal/index.d.ts +0 -1
- package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +13 -7
- package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +8 -10
- package/Microsoft.IdentityModel.Logging/internal/index.d.ts +7 -6
- package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +17 -2
- package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +19 -18
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/internal/index.d.ts +2 -0
- package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +119 -118
- package/Microsoft.IdentityModel.Tokens.d.ts +3 -0
- package/Microsoft.SqlServer.Server/internal/index.d.ts +4 -1
- package/System.ClientModel/internal/index.d.ts +19 -26
- package/System.ClientModel.Primitives/internal/index.d.ts +99 -124
- package/System.ClientModel.Primitives.d.ts +3 -0
- package/System.Configuration/internal/index.d.ts +293 -332
- package/System.Configuration.Internal/internal/index.d.ts +23 -2
- package/System.Configuration.Provider/internal/index.d.ts +7 -4
- package/System.Drawing.Configuration/internal/index.d.ts +2 -6
- package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +38 -16
- package/__internal/extensions/index.d.ts +915 -14
- package/package.json +1 -1
|
@@ -43,6 +43,8 @@ export enum WaitUntil {
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
export interface ETag$instance {
|
|
46
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
47
|
+
|
|
46
48
|
Equals(other: ETag): boolean;
|
|
47
49
|
Equals(other: string): boolean;
|
|
48
50
|
Equals(obj: unknown): boolean;
|
|
@@ -61,6 +63,8 @@ export const ETag: {
|
|
|
61
63
|
export type ETag = ETag$instance;
|
|
62
64
|
|
|
63
65
|
export interface HttpRange$instance {
|
|
66
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
67
|
+
|
|
64
68
|
readonly Length: Nullable<System_Internal.Int64>;
|
|
65
69
|
readonly Offset: long;
|
|
66
70
|
Equals(other: HttpRange): boolean;
|
|
@@ -77,12 +81,10 @@ export const HttpRange: {
|
|
|
77
81
|
|
|
78
82
|
export type HttpRange = HttpRange$instance;
|
|
79
83
|
|
|
80
|
-
export
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
+
export interface AsyncPageable_1$instance<T> {
|
|
85
|
+
readonly __tsonic_iface_System_Collections_Generic_IAsyncEnumerable_1: never;
|
|
84
86
|
|
|
85
|
-
|
|
87
|
+
readonly CancellationToken: CancellationToken;
|
|
86
88
|
AsPages(continuationToken?: string, pageSizeHint?: Nullable<System_Internal.Int32>): IAsyncEnumerable<Page_1<T>>;
|
|
87
89
|
Equals(obj: unknown): boolean;
|
|
88
90
|
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator<T>;
|
|
@@ -91,9 +93,7 @@ export interface AsyncPageable_1$instance<T> extends AsyncPageable_1$protected<T
|
|
|
91
93
|
}
|
|
92
94
|
|
|
93
95
|
|
|
94
|
-
export const AsyncPageable_1: {
|
|
95
|
-
new<T>(): AsyncPageable_1<T>;
|
|
96
|
-
new<T>(cancellationToken: CancellationToken): AsyncPageable_1<T>;
|
|
96
|
+
export const AsyncPageable_1: (abstract new<T>() => AsyncPageable_1<T>) & (abstract new<T>(cancellationToken: CancellationToken) => AsyncPageable_1<T>) & {
|
|
97
97
|
FromPages<T>(pages: IEnumerable__System_Collections_Generic<Page_1<T>>): AsyncPageable_1<T>;
|
|
98
98
|
};
|
|
99
99
|
|
|
@@ -193,7 +193,7 @@ export type MatchConditions = MatchConditions$instance;
|
|
|
193
193
|
|
|
194
194
|
export interface NullableResponse_1$instance<T> {
|
|
195
195
|
readonly HasValue: boolean;
|
|
196
|
-
readonly Value: T;
|
|
196
|
+
readonly Value: T | undefined;
|
|
197
197
|
Equals(obj: unknown): boolean;
|
|
198
198
|
GetHashCode(): int;
|
|
199
199
|
GetRawResponse(): Response;
|
|
@@ -201,8 +201,7 @@ export interface NullableResponse_1$instance<T> {
|
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
|
|
204
|
-
export const NullableResponse_1: {
|
|
205
|
-
new<T>(): NullableResponse_1<T>;
|
|
204
|
+
export const NullableResponse_1: (abstract new<T>() => NullableResponse_1<T>) & {
|
|
206
205
|
};
|
|
207
206
|
|
|
208
207
|
|
|
@@ -227,8 +226,7 @@ export interface Operation$instance {
|
|
|
227
226
|
}
|
|
228
227
|
|
|
229
228
|
|
|
230
|
-
export const Operation: {
|
|
231
|
-
new(): Operation;
|
|
229
|
+
export const Operation: (abstract new() => Operation) & {
|
|
232
230
|
Rehydrate(pipeline: HttpPipeline, rehydrationToken: RehydrationToken, options?: ClientOptions): Operation;
|
|
233
231
|
Rehydrate<T extends IPersistableModel_1<T>>(pipeline: HttpPipeline, rehydrationToken: RehydrationToken, options?: ClientOptions): Operation_1<T>;
|
|
234
232
|
RehydrateAsync(pipeline: HttpPipeline, rehydrationToken: RehydrationToken, options?: ClientOptions): Task<Operation>;
|
|
@@ -255,8 +253,7 @@ export interface Operation_1$instance<T> extends Operation {
|
|
|
255
253
|
}
|
|
256
254
|
|
|
257
255
|
|
|
258
|
-
export const Operation_1: {
|
|
259
|
-
new<T>(): Operation_1<T>;
|
|
256
|
+
export const Operation_1: (abstract new<T>() => Operation_1<T>) & {
|
|
260
257
|
};
|
|
261
258
|
|
|
262
259
|
|
|
@@ -272,20 +269,18 @@ export interface Page_1$instance<T> {
|
|
|
272
269
|
}
|
|
273
270
|
|
|
274
271
|
|
|
275
|
-
export const Page_1: {
|
|
276
|
-
new<T>(): Page_1<T>;
|
|
272
|
+
export const Page_1: (abstract new<T>() => Page_1<T>) & {
|
|
277
273
|
FromValues<T>(values: IReadOnlyList<T>, continuationToken: string, response: Response): Page_1<T>;
|
|
278
274
|
};
|
|
279
275
|
|
|
280
276
|
|
|
281
277
|
export type Page_1<T> = Page_1$instance<T>;
|
|
282
278
|
|
|
283
|
-
export
|
|
284
|
-
|
|
285
|
-
|
|
279
|
+
export interface Pageable_1$instance<T> {
|
|
280
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
281
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
286
282
|
|
|
287
|
-
|
|
288
|
-
export interface Pageable_1$instance<T> extends Pageable_1$protected<T> {
|
|
283
|
+
readonly CancellationToken: CancellationToken;
|
|
289
284
|
AsPages(continuationToken?: string, pageSizeHint?: Nullable<System_Internal.Int32>): IEnumerable__System_Collections_Generic<Page_1<T>>;
|
|
290
285
|
Equals(obj: unknown): boolean;
|
|
291
286
|
GetEnumerator(): IEnumerator<T>;
|
|
@@ -294,9 +289,7 @@ export interface Pageable_1$instance<T> extends Pageable_1$protected<T> {
|
|
|
294
289
|
}
|
|
295
290
|
|
|
296
291
|
|
|
297
|
-
export const Pageable_1: {
|
|
298
|
-
new<T>(): Pageable_1<T>;
|
|
299
|
-
new<T>(cancellationToken: CancellationToken): Pageable_1<T>;
|
|
292
|
+
export const Pageable_1: (abstract new<T>() => Pageable_1<T>) & (abstract new<T>(cancellationToken: CancellationToken) => Pageable_1<T>) & {
|
|
300
293
|
FromPages<T>(pages: IEnumerable__System_Collections_Generic<Page_1<T>>): Pageable_1<T>;
|
|
301
294
|
};
|
|
302
295
|
|
|
@@ -310,8 +303,7 @@ export interface PageableOperation_1$instance<T> extends Operation_1<AsyncPageab
|
|
|
310
303
|
}
|
|
311
304
|
|
|
312
305
|
|
|
313
|
-
export const PageableOperation_1: {
|
|
314
|
-
new<T>(): PageableOperation_1<T>;
|
|
306
|
+
export const PageableOperation_1: (abstract new<T>() => PageableOperation_1<T>) & {
|
|
315
307
|
};
|
|
316
308
|
|
|
317
309
|
|
|
@@ -347,6 +339,8 @@ export const RequestContext: {
|
|
|
347
339
|
export type RequestContext = RequestContext$instance;
|
|
348
340
|
|
|
349
341
|
export interface RequestFailedException$instance extends Exception {
|
|
342
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
343
|
+
|
|
350
344
|
readonly ErrorCode: string | undefined;
|
|
351
345
|
readonly Status: int;
|
|
352
346
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -363,36 +357,32 @@ export const RequestFailedException: {
|
|
|
363
357
|
new(response: Response): RequestFailedException;
|
|
364
358
|
new(response: Response, innerException: Exception): RequestFailedException;
|
|
365
359
|
new(response: Response, innerException: Exception, detailsParser: RequestFailedDetailsParser): RequestFailedException;
|
|
366
|
-
new(info: SerializationInfo, context: StreamingContext): RequestFailedException;
|
|
367
360
|
};
|
|
368
361
|
|
|
369
362
|
|
|
370
363
|
export type RequestFailedException = RequestFailedException$instance;
|
|
371
364
|
|
|
372
|
-
export
|
|
373
|
-
|
|
374
|
-
protected abstract EnumerateHeaders(): IEnumerable__System_Collections_Generic<HttpHeader>;
|
|
375
|
-
protected abstract TryGetHeader(name: string, value: string): boolean;
|
|
376
|
-
protected abstract TryGetHeaderValues(name: string, values: IEnumerable__System_Collections_Generic<System_Internal.String>): boolean;
|
|
377
|
-
}
|
|
378
|
-
|
|
365
|
+
export interface Response$instance {
|
|
366
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
379
367
|
|
|
380
|
-
export interface Response$instance extends Response$protected {
|
|
381
368
|
ClientRequestId: string;
|
|
382
369
|
readonly Content: BinaryData;
|
|
383
370
|
get ContentStream(): Stream | undefined;
|
|
384
|
-
set ContentStream(value: Stream);
|
|
371
|
+
set ContentStream(value: Stream | undefined);
|
|
385
372
|
readonly Headers: ResponseHeaders;
|
|
386
373
|
IsError: boolean;
|
|
387
374
|
readonly ReasonPhrase: string;
|
|
388
375
|
readonly Status: int;
|
|
376
|
+
ContainsHeader(name: string): boolean;
|
|
389
377
|
Dispose(): void;
|
|
378
|
+
EnumerateHeaders(): IEnumerable__System_Collections_Generic<HttpHeader>;
|
|
390
379
|
ToString(): string;
|
|
380
|
+
TryGetHeader(name: string, value: string): boolean;
|
|
381
|
+
TryGetHeaderValues(name: string, values: IEnumerable__System_Collections_Generic<System_Internal.String>): boolean;
|
|
391
382
|
}
|
|
392
383
|
|
|
393
384
|
|
|
394
|
-
export const Response: {
|
|
395
|
-
new(): Response;
|
|
385
|
+
export const Response: (abstract new() => Response) & {
|
|
396
386
|
FromValue<T>(value: T, response: Response): Response_1<T>;
|
|
397
387
|
};
|
|
398
388
|
|
|
@@ -407,14 +397,16 @@ export interface Response_1$instance<T> extends NullableResponse_1<T> {
|
|
|
407
397
|
}
|
|
408
398
|
|
|
409
399
|
|
|
410
|
-
export const Response_1: {
|
|
411
|
-
new<T>(): Response_1<T>;
|
|
400
|
+
export const Response_1: (abstract new<T>() => Response_1<T>) & {
|
|
412
401
|
};
|
|
413
402
|
|
|
414
403
|
|
|
415
404
|
export type Response_1<T> = Response_1$instance<T>;
|
|
416
405
|
|
|
417
406
|
export interface ResponseError$instance {
|
|
407
|
+
readonly __tsonic_iface_System_ClientModel_Primitives_IJsonModel_1: never;
|
|
408
|
+
readonly __tsonic_iface_System_ClientModel_Primitives_IPersistableModel_1: never;
|
|
409
|
+
|
|
418
410
|
readonly Code: string | undefined;
|
|
419
411
|
readonly Message: string | undefined;
|
|
420
412
|
ToString(): string;
|
|
@@ -68,6 +68,8 @@ export const AccessToken: {
|
|
|
68
68
|
export type AccessToken = AccessToken$instance;
|
|
69
69
|
|
|
70
70
|
export interface AzureLocation$instance {
|
|
71
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
72
|
+
|
|
71
73
|
readonly DisplayName: string | undefined;
|
|
72
74
|
readonly Name: string;
|
|
73
75
|
Equals(other: AzureLocation): boolean;
|
|
@@ -150,6 +152,8 @@ export const AzureLocation: {
|
|
|
150
152
|
export type AzureLocation = AzureLocation$instance;
|
|
151
153
|
|
|
152
154
|
export interface ContentType$instance {
|
|
155
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
156
|
+
|
|
153
157
|
Equals(other: ContentType): boolean;
|
|
154
158
|
Equals(other: string): boolean;
|
|
155
159
|
Equals(obj: unknown): boolean;
|
|
@@ -169,6 +173,8 @@ export const ContentType: {
|
|
|
169
173
|
export type ContentType = ContentType$instance;
|
|
170
174
|
|
|
171
175
|
export interface HttpHeader$instance {
|
|
176
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
177
|
+
|
|
172
178
|
readonly Name: string;
|
|
173
179
|
readonly Value: string;
|
|
174
180
|
Equals(obj: unknown): boolean;
|
|
@@ -199,6 +205,9 @@ export const MessageProcessingContext: {
|
|
|
199
205
|
export type MessageProcessingContext = MessageProcessingContext$instance;
|
|
200
206
|
|
|
201
207
|
export interface RehydrationToken$instance {
|
|
208
|
+
readonly __tsonic_iface_System_ClientModel_Primitives_IJsonModel_1: never;
|
|
209
|
+
readonly __tsonic_iface_System_ClientModel_Primitives_IPersistableModel_1: never;
|
|
210
|
+
|
|
202
211
|
readonly Id: string;
|
|
203
212
|
}
|
|
204
213
|
|
|
@@ -219,6 +228,9 @@ export type RehydrationToken = RehydrationToken$instance & __RehydrationToken$vi
|
|
|
219
228
|
|
|
220
229
|
|
|
221
230
|
export interface RequestHeaders$instance {
|
|
231
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
232
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
233
|
+
|
|
222
234
|
Add(header: HttpHeader): void;
|
|
223
235
|
Add(name: string, value: string): void;
|
|
224
236
|
Contains(name: string): boolean;
|
|
@@ -238,6 +250,8 @@ export const RequestHeaders: {
|
|
|
238
250
|
export type RequestHeaders = RequestHeaders$instance;
|
|
239
251
|
|
|
240
252
|
export interface RequestMethod$instance {
|
|
253
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
254
|
+
|
|
241
255
|
readonly Method: string;
|
|
242
256
|
Equals(other: RequestMethod): boolean;
|
|
243
257
|
Equals(obj: unknown): boolean;
|
|
@@ -263,6 +277,8 @@ export const RequestMethod: {
|
|
|
263
277
|
export type RequestMethod = RequestMethod$instance;
|
|
264
278
|
|
|
265
279
|
export interface ResourceType$instance {
|
|
280
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
281
|
+
|
|
266
282
|
readonly Namespace: string;
|
|
267
283
|
readonly Type: string;
|
|
268
284
|
Equals(other: ResourceType): boolean;
|
|
@@ -281,6 +297,9 @@ export const ResourceType: {
|
|
|
281
297
|
export type ResourceType = ResourceType$instance;
|
|
282
298
|
|
|
283
299
|
export interface ResponseHeaders$instance {
|
|
300
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
301
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
302
|
+
|
|
284
303
|
readonly ContentLength: Nullable<System_Internal.Int32>;
|
|
285
304
|
readonly ContentLengthLong: Nullable<System_Internal.Int64>;
|
|
286
305
|
readonly ContentType: string | undefined;
|
|
@@ -325,17 +344,12 @@ export const TokenRequestContext: {
|
|
|
325
344
|
|
|
326
345
|
export type TokenRequestContext = TokenRequestContext$instance;
|
|
327
346
|
|
|
328
|
-
export
|
|
329
|
-
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
export interface AzureCoreContext$instance extends AzureCoreContext$protected, ModelReaderWriterContext {
|
|
347
|
+
export interface AzureCoreContext$instance extends ModelReaderWriterContext {
|
|
348
|
+
TryGetTypeBuilderCore(type: Type, builder: ModelReaderWriterTypeBuilder): boolean;
|
|
334
349
|
}
|
|
335
350
|
|
|
336
351
|
|
|
337
352
|
export const AzureCoreContext: {
|
|
338
|
-
new(): AzureCoreContext;
|
|
339
353
|
readonly Default: AzureCoreContext;
|
|
340
354
|
};
|
|
341
355
|
|
|
@@ -346,7 +360,7 @@ export interface ClientOptions$instance {
|
|
|
346
360
|
readonly Diagnostics: DiagnosticsOptions | TokenCredentialDiagnosticsOptions;
|
|
347
361
|
readonly Retry: RetryOptions;
|
|
348
362
|
get RetryPolicy(): HttpPipelinePolicy | undefined;
|
|
349
|
-
set RetryPolicy(value: HttpPipelinePolicy);
|
|
363
|
+
set RetryPolicy(value: HttpPipelinePolicy | undefined);
|
|
350
364
|
Transport: HttpPipelineTransport;
|
|
351
365
|
AddPolicy(policy: HttpPipelinePolicy, position: HttpPipelinePosition): void;
|
|
352
366
|
Equals(obj: unknown): boolean;
|
|
@@ -355,27 +369,20 @@ export interface ClientOptions$instance {
|
|
|
355
369
|
}
|
|
356
370
|
|
|
357
371
|
|
|
358
|
-
export const ClientOptions: {
|
|
359
|
-
new(): ClientOptions;
|
|
360
|
-
new(diagnostics: DiagnosticsOptions): ClientOptions;
|
|
372
|
+
export const ClientOptions: (abstract new() => ClientOptions) & (abstract new(diagnostics: DiagnosticsOptions) => ClientOptions) & {
|
|
361
373
|
Default: ClientOptions;
|
|
362
374
|
};
|
|
363
375
|
|
|
364
376
|
|
|
365
377
|
export type ClientOptions = ClientOptions$instance;
|
|
366
378
|
|
|
367
|
-
export
|
|
368
|
-
protected abstract GetNextDelayCore(response: Response, retryNumber: int): TimeSpan;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
export interface DelayStrategy$instance extends DelayStrategy$protected {
|
|
379
|
+
export interface DelayStrategy$instance {
|
|
373
380
|
GetNextDelay(response: Response, retryNumber: int): TimeSpan;
|
|
381
|
+
GetNextDelayCore(response: Response, retryNumber: int): TimeSpan;
|
|
374
382
|
}
|
|
375
383
|
|
|
376
384
|
|
|
377
|
-
export const DelayStrategy: {
|
|
378
|
-
new(maxDelay: Nullable<TimeSpan>, jitterFactor: double): DelayStrategy;
|
|
385
|
+
export const DelayStrategy: (abstract new(maxDelay: Nullable<TimeSpan>, jitterFactor: double) => DelayStrategy) & {
|
|
379
386
|
CreateExponentialDelayStrategy(initialDelay?: Nullable<TimeSpan>, maxDelay?: Nullable<TimeSpan>): DelayStrategy;
|
|
380
387
|
CreateFixedDelayStrategy(delay?: Nullable<TimeSpan>): DelayStrategy;
|
|
381
388
|
Max(val1: TimeSpan, val2: TimeSpan): TimeSpan;
|
|
@@ -387,7 +394,7 @@ export type DelayStrategy = DelayStrategy$instance;
|
|
|
387
394
|
|
|
388
395
|
export interface DiagnosticsOptions$instance {
|
|
389
396
|
get ApplicationId(): string | undefined;
|
|
390
|
-
set ApplicationId(value: string);
|
|
397
|
+
set ApplicationId(value: string | undefined);
|
|
391
398
|
IsDistributedTracingEnabled: boolean;
|
|
392
399
|
IsLoggingContentEnabled: boolean;
|
|
393
400
|
IsLoggingEnabled: boolean;
|
|
@@ -398,16 +405,17 @@ export interface DiagnosticsOptions$instance {
|
|
|
398
405
|
}
|
|
399
406
|
|
|
400
407
|
|
|
401
|
-
export const DiagnosticsOptions: {
|
|
402
|
-
new(): DiagnosticsOptions;
|
|
408
|
+
export const DiagnosticsOptions: (abstract new() => DiagnosticsOptions) & {
|
|
403
409
|
get DefaultApplicationId(): string | undefined;
|
|
404
|
-
set DefaultApplicationId(value: string);
|
|
410
|
+
set DefaultApplicationId(value: string | undefined);
|
|
405
411
|
};
|
|
406
412
|
|
|
407
413
|
|
|
408
414
|
export type DiagnosticsOptions = DiagnosticsOptions$instance;
|
|
409
415
|
|
|
410
416
|
export interface HttpMessage$instance {
|
|
417
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
418
|
+
|
|
411
419
|
BufferResponse: boolean;
|
|
412
420
|
CancellationToken: CancellationToken;
|
|
413
421
|
readonly HasResponse: boolean;
|
|
@@ -432,35 +440,35 @@ export const HttpMessage: {
|
|
|
432
440
|
|
|
433
441
|
export type HttpMessage = HttpMessage$instance;
|
|
434
442
|
|
|
435
|
-
export
|
|
436
|
-
|
|
437
|
-
protected abstract ContainsHeader(name: string): boolean;
|
|
438
|
-
protected abstract EnumerateHeaders(): IEnumerable__System_Collections_Generic<HttpHeader>;
|
|
439
|
-
protected abstract RemoveHeader(name: string): boolean;
|
|
440
|
-
protected SetHeader(name: string, value: string): void;
|
|
441
|
-
protected abstract TryGetHeader(name: string, value: string): boolean;
|
|
442
|
-
protected abstract TryGetHeaderValues(name: string, values: IEnumerable__System_Collections_Generic<System_Internal.String>): boolean;
|
|
443
|
-
}
|
|
444
|
-
|
|
443
|
+
export interface Request$instance {
|
|
444
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
445
445
|
|
|
446
|
-
export interface Request$instance extends Request$protected {
|
|
447
446
|
ClientRequestId: string;
|
|
448
|
-
Content: RequestContent;
|
|
447
|
+
get Content(): RequestContent | undefined;
|
|
448
|
+
set Content(value: RequestContent | undefined);
|
|
449
449
|
readonly Headers: RequestHeaders;
|
|
450
450
|
Method: RequestMethod;
|
|
451
451
|
Uri: RequestUriBuilder;
|
|
452
|
+
AddHeader(name: string, value: string): void;
|
|
453
|
+
ContainsHeader(name: string): boolean;
|
|
452
454
|
Dispose(): void;
|
|
455
|
+
EnumerateHeaders(): IEnumerable__System_Collections_Generic<HttpHeader>;
|
|
456
|
+
RemoveHeader(name: string): boolean;
|
|
457
|
+
SetHeader(name: string, value: string): void;
|
|
458
|
+
TryGetHeader(name: string, value: string): boolean;
|
|
459
|
+
TryGetHeaderValues(name: string, values: IEnumerable__System_Collections_Generic<System_Internal.String>): boolean;
|
|
453
460
|
}
|
|
454
461
|
|
|
455
462
|
|
|
456
|
-
export const Request: {
|
|
457
|
-
new(): Request;
|
|
463
|
+
export const Request: (abstract new() => Request) & {
|
|
458
464
|
};
|
|
459
465
|
|
|
460
466
|
|
|
461
467
|
export type Request = Request$instance;
|
|
462
468
|
|
|
463
469
|
export interface RequestContent$instance {
|
|
470
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
471
|
+
|
|
464
472
|
Dispose(): void;
|
|
465
473
|
TryComputeLength(length: long): boolean;
|
|
466
474
|
WriteTo(stream: Stream, cancellation: CancellationToken): void;
|
|
@@ -468,8 +476,7 @@ export interface RequestContent$instance {
|
|
|
468
476
|
}
|
|
469
477
|
|
|
470
478
|
|
|
471
|
-
export const RequestContent: {
|
|
472
|
-
new(): RequestContent;
|
|
479
|
+
export const RequestContent: (abstract new() => RequestContent) & {
|
|
473
480
|
Create(content: DynamicData): RequestContent;
|
|
474
481
|
Create(content: BinaryData): RequestContent;
|
|
475
482
|
Create(bytes: ReadOnlySequence<System_Internal.Byte>): RequestContent;
|
|
@@ -492,8 +499,7 @@ export interface RequestFailedDetailsParser$instance {
|
|
|
492
499
|
}
|
|
493
500
|
|
|
494
501
|
|
|
495
|
-
export const RequestFailedDetailsParser: {
|
|
496
|
-
new(): RequestFailedDetailsParser;
|
|
502
|
+
export const RequestFailedDetailsParser: (abstract new() => RequestFailedDetailsParser) & {
|
|
497
503
|
};
|
|
498
504
|
|
|
499
505
|
|
|
@@ -501,12 +507,13 @@ export type RequestFailedDetailsParser = RequestFailedDetailsParser$instance;
|
|
|
501
507
|
|
|
502
508
|
export interface RequestUriBuilder$instance {
|
|
503
509
|
get Host(): string | undefined;
|
|
504
|
-
set Host(value: string);
|
|
510
|
+
set Host(value: string | undefined);
|
|
505
511
|
Path: string;
|
|
506
512
|
readonly PathAndQuery: string;
|
|
507
513
|
Port: int;
|
|
508
514
|
Query: string;
|
|
509
|
-
Scheme: string;
|
|
515
|
+
get Scheme(): string | undefined;
|
|
516
|
+
set Scheme(value: string | undefined);
|
|
510
517
|
AppendPath(value: string): void;
|
|
511
518
|
AppendPath(value: string, escape: boolean): void;
|
|
512
519
|
AppendPath(value: ReadOnlySpan<System_Internal.Char>, escape: boolean): void;
|
|
@@ -527,6 +534,9 @@ export const RequestUriBuilder: {
|
|
|
527
534
|
export type RequestUriBuilder = RequestUriBuilder$instance;
|
|
528
535
|
|
|
529
536
|
export interface ResourceIdentifier$instance {
|
|
537
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
538
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
539
|
+
|
|
530
540
|
readonly Location: Nullable<AzureLocation>;
|
|
531
541
|
readonly Name: string;
|
|
532
542
|
readonly Parent: ResourceIdentifier | undefined;
|
|
@@ -559,8 +569,7 @@ export interface ResponseClassificationHandler$instance {
|
|
|
559
569
|
}
|
|
560
570
|
|
|
561
571
|
|
|
562
|
-
export const ResponseClassificationHandler: {
|
|
563
|
-
new(): ResponseClassificationHandler;
|
|
572
|
+
export const ResponseClassificationHandler: (abstract new() => ResponseClassificationHandler) & {
|
|
564
573
|
};
|
|
565
574
|
|
|
566
575
|
|
|
@@ -591,7 +600,6 @@ export interface RetryOptions$instance {
|
|
|
591
600
|
|
|
592
601
|
|
|
593
602
|
export const RetryOptions: {
|
|
594
|
-
new(): RetryOptions;
|
|
595
603
|
};
|
|
596
604
|
|
|
597
605
|
|
|
@@ -635,8 +643,7 @@ export interface TokenCredential$instance extends AuthenticationTokenProvider {
|
|
|
635
643
|
}
|
|
636
644
|
|
|
637
645
|
|
|
638
|
-
export const TokenCredential: {
|
|
639
|
-
new(): TokenCredential;
|
|
646
|
+
export const TokenCredential: (abstract new() => TokenCredential) & {
|
|
640
647
|
};
|
|
641
648
|
|
|
642
649
|
|
|
@@ -12,6 +12,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
12
12
|
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
13
13
|
|
|
14
14
|
export interface IKeyEncryptionKey$instance {
|
|
15
|
+
readonly __tsonic_iface_Azure_Core_Cryptography_IKeyEncryptionKey: never;
|
|
16
|
+
|
|
15
17
|
readonly KeyId: string;
|
|
16
18
|
WrapKey(algorithm: string, key: ReadOnlyMemory<System_Internal.Byte>, cancellationToken?: CancellationToken): byte[];
|
|
17
19
|
WrapKeyAsync(algorithm: string, key: ReadOnlyMemory<System_Internal.Byte>, cancellationToken?: CancellationToken): Task<byte[]>;
|
|
@@ -21,6 +23,8 @@ export interface IKeyEncryptionKey$instance {
|
|
|
21
23
|
export type IKeyEncryptionKey = IKeyEncryptionKey$instance;
|
|
22
24
|
|
|
23
25
|
export interface IKeyEncryptionKeyResolver$instance {
|
|
26
|
+
readonly __tsonic_iface_Azure_Core_Cryptography_IKeyEncryptionKeyResolver: never;
|
|
27
|
+
|
|
24
28
|
Resolve(keyId: string, cancellationToken?: CancellationToken): IKeyEncryptionKey;
|
|
25
29
|
ResolveAsync(keyId: string, cancellationToken?: CancellationToken): Task<IKeyEncryptionKey>;
|
|
26
30
|
}
|
|
@@ -11,13 +11,11 @@ import type { EventLevel, EventListener, EventSource, EventWrittenEventArgs } fr
|
|
|
11
11
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
12
12
|
import type { Action, IDisposable, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
13
13
|
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
protected OnEventWritten(eventData: EventWrittenEventArgs): void;
|
|
17
|
-
}
|
|
18
|
-
|
|
14
|
+
export interface AzureEventSourceListener$instance extends EventListener {
|
|
15
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
19
16
|
|
|
20
|
-
|
|
17
|
+
OnEventSourceCreated(eventSource: EventSource): void;
|
|
18
|
+
OnEventWritten(eventData: EventWrittenEventArgs): void;
|
|
21
19
|
}
|
|
22
20
|
|
|
23
21
|
|
|
@@ -11,12 +11,16 @@ import type { TokenCredential } from "../../Azure.Core/internal/index.js";
|
|
|
11
11
|
import type { Boolean as ClrBoolean, Func } from "@tsonic/dotnet/System.js";
|
|
12
12
|
|
|
13
13
|
export interface IAzureClientBuilder_2$instance<TClient, TOptions> {
|
|
14
|
+
readonly __tsonic_iface_Azure_Core_Extensions_IAzureClientBuilder_2: never;
|
|
15
|
+
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
|
|
17
19
|
export type IAzureClientBuilder_2<TClient, TOptions> = IAzureClientBuilder_2$instance<TClient, TOptions>;
|
|
18
20
|
|
|
19
21
|
export interface IAzureClientFactoryBuilder$instance {
|
|
22
|
+
readonly __tsonic_iface_Azure_Core_Extensions_IAzureClientFactoryBuilder: never;
|
|
23
|
+
|
|
20
24
|
RegisterClientFactory<TClient, TOptions>(clientFactory: Func<TOptions, TClient>): IAzureClientBuilder_2<TClient, TOptions>;
|
|
21
25
|
}
|
|
22
26
|
|
|
@@ -24,6 +28,8 @@ export interface IAzureClientFactoryBuilder$instance {
|
|
|
24
28
|
export type IAzureClientFactoryBuilder = IAzureClientFactoryBuilder$instance;
|
|
25
29
|
|
|
26
30
|
export interface IAzureClientFactoryBuilderWithConfiguration_1$instance<TConfiguration> extends IAzureClientFactoryBuilder {
|
|
31
|
+
readonly __tsonic_iface_Azure_Core_Extensions_IAzureClientFactoryBuilderWithConfiguration_1: never;
|
|
32
|
+
|
|
27
33
|
RegisterClientFactory<TClient, TOptions>(clientFactory: Func<TOptions, TClient>): IAzureClientBuilder_2<TClient, TOptions>;
|
|
28
34
|
RegisterClientFactory<TClient, TOptions>(configuration: TConfiguration): IAzureClientBuilder_2<TClient, TOptions>;
|
|
29
35
|
}
|
|
@@ -34,6 +40,8 @@ export interface IAzureClientFactoryBuilderWithConfiguration_1$instance<TConfigu
|
|
|
34
40
|
export type IAzureClientFactoryBuilderWithConfiguration_1<TConfiguration> = IAzureClientFactoryBuilderWithConfiguration_1$instance<TConfiguration>;
|
|
35
41
|
|
|
36
42
|
export interface IAzureClientFactoryBuilderWithCredential$instance {
|
|
43
|
+
readonly __tsonic_iface_Azure_Core_Extensions_IAzureClientFactoryBuilderWithCredential: never;
|
|
44
|
+
|
|
37
45
|
RegisterClientFactory<TClient, TOptions>(clientFactory: Func<TOptions, TokenCredential, TClient>, requiresCredential?: boolean): IAzureClientBuilder_2<TClient, TOptions>;
|
|
38
46
|
}
|
|
39
47
|
|
|
@@ -32,8 +32,13 @@ export enum GeoObjectType {
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
export interface GeoArray_1$instance<T> {
|
|
35
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
36
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
37
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
38
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
39
|
+
|
|
35
40
|
readonly Count: int;
|
|
36
|
-
readonly
|
|
41
|
+
readonly [index: number]: T;
|
|
37
42
|
GetEnumerator(): GeoArray_1_Enumerator<T>;
|
|
38
43
|
}
|
|
39
44
|
|
|
@@ -46,6 +51,10 @@ export const GeoArray_1: {
|
|
|
46
51
|
export type GeoArray_1<T> = GeoArray_1$instance<T>;
|
|
47
52
|
|
|
48
53
|
export interface GeoArray_1_Enumerator$instance<T> {
|
|
54
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
55
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
56
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
57
|
+
|
|
49
58
|
readonly Current: T;
|
|
50
59
|
Dispose(): void;
|
|
51
60
|
MoveNext(): boolean;
|
|
@@ -61,9 +70,11 @@ export const GeoArray_1_Enumerator: {
|
|
|
61
70
|
export type GeoArray_1_Enumerator<T> = GeoArray_1_Enumerator$instance<T>;
|
|
62
71
|
|
|
63
72
|
export interface GeoPosition$instance {
|
|
73
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
74
|
+
|
|
64
75
|
readonly Altitude: Nullable<System_Internal.Double>;
|
|
65
76
|
readonly Count: int;
|
|
66
|
-
readonly
|
|
77
|
+
readonly [index: number]: double;
|
|
67
78
|
readonly Latitude: double;
|
|
68
79
|
readonly Longitude: double;
|
|
69
80
|
Equals(other: GeoPosition): boolean;
|
|
@@ -82,8 +93,10 @@ export const GeoPosition: {
|
|
|
82
93
|
export type GeoPosition = GeoPosition$instance;
|
|
83
94
|
|
|
84
95
|
export interface GeoBoundingBox$instance {
|
|
96
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
97
|
+
|
|
85
98
|
readonly East: double;
|
|
86
|
-
readonly
|
|
99
|
+
readonly [index: number]: double;
|
|
87
100
|
readonly MaxAltitude: Nullable<System_Internal.Double>;
|
|
88
101
|
readonly MinAltitude: Nullable<System_Internal.Double>;
|
|
89
102
|
readonly North: double;
|
|
@@ -105,8 +118,13 @@ export const GeoBoundingBox: {
|
|
|
105
118
|
export type GeoBoundingBox = GeoBoundingBox$instance;
|
|
106
119
|
|
|
107
120
|
export interface GeoCollection$instance extends GeoObject {
|
|
121
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
122
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
123
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
124
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
125
|
+
|
|
108
126
|
readonly Count: int;
|
|
109
|
-
readonly
|
|
127
|
+
readonly [index: number]: GeoObject;
|
|
110
128
|
readonly Type: GeoObjectType;
|
|
111
129
|
GetEnumerator(): IEnumerator__System_Collections_Generic<GeoObject>;
|
|
112
130
|
}
|
|
@@ -147,9 +165,14 @@ export const GeoLineString: {
|
|
|
147
165
|
export type GeoLineString = GeoLineString$instance;
|
|
148
166
|
|
|
149
167
|
export interface GeoLineStringCollection$instance extends GeoObject {
|
|
168
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
169
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
170
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
171
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
172
|
+
|
|
150
173
|
readonly Coordinates: GeoArray_1<GeoArray_1<GeoPosition>>;
|
|
151
174
|
readonly Count: int;
|
|
152
|
-
readonly
|
|
175
|
+
readonly [index: number]: GeoLineString;
|
|
153
176
|
readonly Type: GeoObjectType;
|
|
154
177
|
GetEnumerator(): IEnumerator__System_Collections_Generic<GeoLineString>;
|
|
155
178
|
}
|
|
@@ -179,6 +202,9 @@ export const GeoObject: {
|
|
|
179
202
|
export type GeoObject = GeoObject$instance;
|
|
180
203
|
|
|
181
204
|
export interface GeoPoint$instance extends GeoObject {
|
|
205
|
+
readonly __tsonic_iface_System_ClientModel_Primitives_IJsonModel_1: never;
|
|
206
|
+
readonly __tsonic_iface_System_ClientModel_Primitives_IPersistableModel_1: never;
|
|
207
|
+
|
|
182
208
|
readonly Coordinates: GeoPosition;
|
|
183
209
|
readonly Type: GeoObjectType;
|
|
184
210
|
}
|
|
@@ -204,9 +230,14 @@ export type GeoPoint = GeoPoint$instance & __GeoPoint$views;
|
|
|
204
230
|
|
|
205
231
|
|
|
206
232
|
export interface GeoPointCollection$instance extends GeoObject {
|
|
233
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
234
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
235
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
236
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
237
|
+
|
|
207
238
|
readonly Coordinates: GeoArray_1<GeoPosition>;
|
|
208
239
|
readonly Count: int;
|
|
209
|
-
readonly
|
|
240
|
+
readonly [index: number]: GeoPoint;
|
|
210
241
|
readonly Type: GeoObjectType;
|
|
211
242
|
GetEnumerator(): IEnumerator__System_Collections_Generic<GeoPoint>;
|
|
212
243
|
}
|
|
@@ -238,9 +269,14 @@ export const GeoPolygon: {
|
|
|
238
269
|
export type GeoPolygon = GeoPolygon$instance;
|
|
239
270
|
|
|
240
271
|
export interface GeoPolygonCollection$instance extends GeoObject {
|
|
272
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
273
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
274
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
275
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
276
|
+
|
|
241
277
|
readonly Coordinates: GeoArray_1<GeoArray_1<GeoArray_1<GeoPosition>>>;
|
|
242
278
|
readonly Count: int;
|
|
243
|
-
readonly
|
|
279
|
+
readonly [index: number]: GeoPolygon;
|
|
244
280
|
readonly Type: GeoObjectType;
|
|
245
281
|
GetEnumerator(): IEnumerator__System_Collections_Generic<GeoPolygon>;
|
|
246
282
|
}
|