@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
|
@@ -17,15 +17,11 @@ import type { X509Certificate2, X509Chain } from "@tsonic/dotnet/System.Security
|
|
|
17
17
|
import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
18
18
|
import type { ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
19
19
|
|
|
20
|
-
export
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
export interface BearerTokenAuthenticationPolicy$instance extends BearerTokenAuthenticationPolicy$protected, HttpPipelinePolicy {
|
|
20
|
+
export interface BearerTokenAuthenticationPolicy$instance extends HttpPipelinePolicy {
|
|
21
|
+
AuthorizeRequest(message: HttpMessage): void;
|
|
22
|
+
AuthorizeRequestAsync(message: HttpMessage): ValueTask;
|
|
23
|
+
AuthorizeRequestOnChallenge(message: HttpMessage): boolean;
|
|
24
|
+
AuthorizeRequestOnChallengeAsync(message: HttpMessage): ValueTask<System_Internal.Boolean>;
|
|
29
25
|
Process(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): void;
|
|
30
26
|
ProcessAsync(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): ValueTask;
|
|
31
27
|
}
|
|
@@ -40,18 +36,21 @@ export const BearerTokenAuthenticationPolicy: {
|
|
|
40
36
|
export type BearerTokenAuthenticationPolicy = BearerTokenAuthenticationPolicy$instance;
|
|
41
37
|
|
|
42
38
|
export interface DisposableHttpPipeline$instance extends HttpPipeline {
|
|
39
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
40
|
+
|
|
43
41
|
Dispose(): void;
|
|
44
42
|
}
|
|
45
43
|
|
|
46
44
|
|
|
47
45
|
export const DisposableHttpPipeline: {
|
|
48
|
-
new(): DisposableHttpPipeline;
|
|
49
46
|
};
|
|
50
47
|
|
|
51
48
|
|
|
52
49
|
export type DisposableHttpPipeline = DisposableHttpPipeline$instance;
|
|
53
50
|
|
|
54
51
|
export interface HttpClientTransport$instance extends HttpPipelineTransport {
|
|
52
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
53
|
+
|
|
55
54
|
CreateRequest(): Request;
|
|
56
55
|
Dispose(): void;
|
|
57
56
|
Process(message: HttpMessage): void;
|
|
@@ -96,7 +95,8 @@ export interface HttpPipelineOptions$instance {
|
|
|
96
95
|
readonly PerCallPolicies: IList<HttpPipelinePolicy>;
|
|
97
96
|
readonly PerRetryPolicies: IList<HttpPipelinePolicy>;
|
|
98
97
|
RequestFailedDetailsParser: RequestFailedDetailsParser;
|
|
99
|
-
ResponseClassifier: ResponseClassifier;
|
|
98
|
+
get ResponseClassifier(): ResponseClassifier | undefined;
|
|
99
|
+
set ResponseClassifier(value: ResponseClassifier | undefined);
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
|
|
@@ -113,8 +113,7 @@ export interface HttpPipelinePolicy$instance {
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
export const HttpPipelinePolicy: {
|
|
117
|
-
new(): HttpPipelinePolicy;
|
|
116
|
+
export const HttpPipelinePolicy: (abstract new() => HttpPipelinePolicy) & {
|
|
118
117
|
ProcessNext(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): void;
|
|
119
118
|
ProcessNextAsync(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): ValueTask;
|
|
120
119
|
};
|
|
@@ -132,8 +131,7 @@ export interface HttpPipelineSynchronousPolicy$instance extends HttpPipelinePoli
|
|
|
132
131
|
}
|
|
133
132
|
|
|
134
133
|
|
|
135
|
-
export const HttpPipelineSynchronousPolicy: {
|
|
136
|
-
new(): HttpPipelineSynchronousPolicy;
|
|
134
|
+
export const HttpPipelineSynchronousPolicy: (abstract new() => HttpPipelineSynchronousPolicy) & {
|
|
137
135
|
};
|
|
138
136
|
|
|
139
137
|
|
|
@@ -146,8 +144,7 @@ export interface HttpPipelineTransport$instance {
|
|
|
146
144
|
}
|
|
147
145
|
|
|
148
146
|
|
|
149
|
-
export const HttpPipelineTransport: {
|
|
150
|
-
new(): HttpPipelineTransport;
|
|
147
|
+
export const HttpPipelineTransport: (abstract new() => HttpPipelineTransport) & {
|
|
151
148
|
};
|
|
152
149
|
|
|
153
150
|
|
|
@@ -157,7 +154,7 @@ export interface HttpPipelineTransportOptions$instance {
|
|
|
157
154
|
readonly ClientCertificates: IList<X509Certificate2>;
|
|
158
155
|
IsClientRedirectEnabled: boolean;
|
|
159
156
|
get ServerCertificateCustomValidationCallback(): Func<ServerCertificateCustomValidationArgs, System_Internal.Boolean> | undefined;
|
|
160
|
-
set ServerCertificateCustomValidationCallback(value: Func<ServerCertificateCustomValidationArgs, System_Internal.Boolean>);
|
|
157
|
+
set ServerCertificateCustomValidationCallback(value: Func<ServerCertificateCustomValidationArgs, System_Internal.Boolean> | undefined);
|
|
161
158
|
}
|
|
162
159
|
|
|
163
160
|
|
|
@@ -175,26 +172,21 @@ export interface RedirectPolicy$instance extends HttpPipelinePolicy {
|
|
|
175
172
|
|
|
176
173
|
|
|
177
174
|
export const RedirectPolicy: {
|
|
178
|
-
new(): RedirectPolicy;
|
|
179
175
|
SetAllowAutoRedirect(message: HttpMessage, allowAutoRedirect: boolean): void;
|
|
180
176
|
};
|
|
181
177
|
|
|
182
178
|
|
|
183
179
|
export type RedirectPolicy = RedirectPolicy$instance;
|
|
184
180
|
|
|
185
|
-
export
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
protected ShouldRetry(message: HttpMessage, exception: Exception): boolean;
|
|
191
|
-
protected ShouldRetryAsync(message: HttpMessage, exception: Exception): ValueTask<System_Internal.Boolean>;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
export interface RetryPolicy$instance extends RetryPolicy$protected, HttpPipelinePolicy {
|
|
181
|
+
export interface RetryPolicy$instance extends HttpPipelinePolicy {
|
|
182
|
+
OnRequestSent(message: HttpMessage): void;
|
|
183
|
+
OnRequestSentAsync(message: HttpMessage): ValueTask;
|
|
184
|
+
OnSendingRequest(message: HttpMessage): void;
|
|
185
|
+
OnSendingRequestAsync(message: HttpMessage): ValueTask;
|
|
196
186
|
Process(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): void;
|
|
197
187
|
ProcessAsync(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): ValueTask;
|
|
188
|
+
ShouldRetry(message: HttpMessage, exception: Exception): boolean;
|
|
189
|
+
ShouldRetryAsync(message: HttpMessage, exception: Exception): ValueTask<System_Internal.Boolean>;
|
|
198
190
|
}
|
|
199
191
|
|
|
200
192
|
|
|
@@ -24,6 +24,8 @@ export enum JsonPropertyNames {
|
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
export interface IMemberNameConverter$instance {
|
|
27
|
+
readonly __tsonic_iface_Azure_Core_Serialization_IMemberNameConverter: never;
|
|
28
|
+
|
|
27
29
|
ConvertMemberName(member: MemberInfo): string | undefined;
|
|
28
30
|
}
|
|
29
31
|
|
|
@@ -31,6 +33,9 @@ export interface IMemberNameConverter$instance {
|
|
|
31
33
|
export type IMemberNameConverter = IMemberNameConverter$instance;
|
|
32
34
|
|
|
33
35
|
export interface DynamicData$instance {
|
|
36
|
+
readonly __tsonic_iface_System_Dynamic_IDynamicMetaObjectProvider: never;
|
|
37
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
38
|
+
|
|
34
39
|
Dispose(): void;
|
|
35
40
|
Equals(obj: unknown): boolean;
|
|
36
41
|
GetHashCode(): int;
|
|
@@ -39,13 +44,14 @@ export interface DynamicData$instance {
|
|
|
39
44
|
|
|
40
45
|
|
|
41
46
|
export const DynamicData: {
|
|
42
|
-
new(): DynamicData;
|
|
43
47
|
};
|
|
44
48
|
|
|
45
49
|
|
|
46
50
|
export type DynamicData = DynamicData$instance;
|
|
47
51
|
|
|
48
52
|
export interface JsonObjectSerializer$instance extends ObjectSerializer {
|
|
53
|
+
readonly __tsonic_iface_Azure_Core_Serialization_IMemberNameConverter: never;
|
|
54
|
+
|
|
49
55
|
Deserialize(stream: Stream, returnType: Type, cancellationToken: CancellationToken): unknown | undefined;
|
|
50
56
|
DeserializeAsync(stream: Stream, returnType: Type, cancellationToken: CancellationToken): ValueTask<unknown>;
|
|
51
57
|
Serialize(stream: Stream, value: unknown, inputType: Type, cancellationToken: CancellationToken): void;
|
|
@@ -82,8 +88,7 @@ export interface ObjectSerializer$instance {
|
|
|
82
88
|
}
|
|
83
89
|
|
|
84
90
|
|
|
85
|
-
export const ObjectSerializer: {
|
|
86
|
-
new(): ObjectSerializer;
|
|
91
|
+
export const ObjectSerializer: (abstract new() => ObjectSerializer) & {
|
|
87
92
|
};
|
|
88
93
|
|
|
89
94
|
|
|
@@ -51,13 +51,14 @@ export const TokenCacheData: {
|
|
|
51
51
|
export type TokenCacheData = TokenCacheData$instance;
|
|
52
52
|
|
|
53
53
|
export interface AuthenticationFailedException$instance extends Exception {
|
|
54
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
55
|
+
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
|
|
57
59
|
export const AuthenticationFailedException: {
|
|
58
60
|
new(message: string): AuthenticationFailedException;
|
|
59
61
|
new(message: string, innerException: Exception): AuthenticationFailedException;
|
|
60
|
-
new(info: SerializationInfo, context: StreamingContext): AuthenticationFailedException;
|
|
61
62
|
};
|
|
62
63
|
|
|
63
64
|
|
|
@@ -75,7 +76,6 @@ export interface AuthenticationRecord$instance {
|
|
|
75
76
|
|
|
76
77
|
|
|
77
78
|
export const AuthenticationRecord: {
|
|
78
|
-
new(): AuthenticationRecord;
|
|
79
79
|
Deserialize(stream: Stream, cancellationToken?: CancellationToken): AuthenticationRecord;
|
|
80
80
|
DeserializeAsync(stream: Stream, cancellationToken?: CancellationToken): Task<AuthenticationRecord>;
|
|
81
81
|
};
|
|
@@ -84,6 +84,8 @@ export const AuthenticationRecord: {
|
|
|
84
84
|
export type AuthenticationRecord = AuthenticationRecord$instance;
|
|
85
85
|
|
|
86
86
|
export interface AuthenticationRequiredException$instance extends CredentialUnavailableException {
|
|
87
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
88
|
+
|
|
87
89
|
readonly TokenRequestContext: TokenRequestContext;
|
|
88
90
|
}
|
|
89
91
|
|
|
@@ -91,7 +93,6 @@ export interface AuthenticationRequiredException$instance extends CredentialUnav
|
|
|
91
93
|
export const AuthenticationRequiredException: {
|
|
92
94
|
new(message: string, context: TokenRequestContext): AuthenticationRequiredException;
|
|
93
95
|
new(message: string, context: TokenRequestContext, innerException: Exception): AuthenticationRequiredException;
|
|
94
|
-
new(info: SerializationInfo, context: StreamingContext): AuthenticationRequiredException;
|
|
95
96
|
};
|
|
96
97
|
|
|
97
98
|
|
|
@@ -106,7 +107,6 @@ export interface AuthorizationCodeCredential$instance extends TokenCredential {
|
|
|
106
107
|
|
|
107
108
|
|
|
108
109
|
export const AuthorizationCodeCredential: {
|
|
109
|
-
new(): AuthorizationCodeCredential;
|
|
110
110
|
new(tenantId: string, clientId: string, clientSecret: string, authorizationCode: string): AuthorizationCodeCredential;
|
|
111
111
|
new(tenantId: string, clientId: string, clientSecret: string, authorizationCode: string, options: AuthorizationCodeCredentialOptions): AuthorizationCodeCredential;
|
|
112
112
|
new(tenantId: string, clientId: string, clientSecret: string, authorizationCode: string, options: TokenCredentialOptions): AuthorizationCodeCredential;
|
|
@@ -116,6 +116,9 @@ export const AuthorizationCodeCredential: {
|
|
|
116
116
|
export type AuthorizationCodeCredential = AuthorizationCodeCredential$instance;
|
|
117
117
|
|
|
118
118
|
export interface AuthorizationCodeCredentialOptions$instance extends TokenCredentialOptions {
|
|
119
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
120
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
121
|
+
|
|
119
122
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
120
123
|
DisableInstanceDiscovery: boolean;
|
|
121
124
|
RedirectUri: Uri;
|
|
@@ -146,6 +149,8 @@ export const AzureCliCredential: {
|
|
|
146
149
|
export type AzureCliCredential = AzureCliCredential$instance;
|
|
147
150
|
|
|
148
151
|
export interface AzureCliCredentialOptions$instance extends TokenCredentialOptions {
|
|
152
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
153
|
+
|
|
149
154
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
150
155
|
ProcessTimeout: Nullable<TimeSpan>;
|
|
151
156
|
Subscription: string;
|
|
@@ -177,6 +182,8 @@ export const AzureDeveloperCliCredential: {
|
|
|
177
182
|
export type AzureDeveloperCliCredential = AzureDeveloperCliCredential$instance;
|
|
178
183
|
|
|
179
184
|
export interface AzureDeveloperCliCredentialOptions$instance extends TokenCredentialOptions {
|
|
185
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
186
|
+
|
|
180
187
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
181
188
|
ProcessTimeout: Nullable<TimeSpan>;
|
|
182
189
|
TenantId: string;
|
|
@@ -199,7 +206,6 @@ export interface AzurePipelinesCredential$instance extends TokenCredential {
|
|
|
199
206
|
|
|
200
207
|
|
|
201
208
|
export const AzurePipelinesCredential: {
|
|
202
|
-
new(): AzurePipelinesCredential;
|
|
203
209
|
new(tenantId: string, clientId: string, serviceConnectionId: string, systemAccessToken: string, options: AzurePipelinesCredentialOptions): AzurePipelinesCredential;
|
|
204
210
|
};
|
|
205
211
|
|
|
@@ -207,6 +213,10 @@ export const AzurePipelinesCredential: {
|
|
|
207
213
|
export type AzurePipelinesCredential = AzurePipelinesCredential$instance;
|
|
208
214
|
|
|
209
215
|
export interface AzurePipelinesCredentialOptions$instance extends TokenCredentialOptions {
|
|
216
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
217
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
218
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
219
|
+
|
|
210
220
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
211
221
|
DisableInstanceDiscovery: boolean;
|
|
212
222
|
TokenCachePersistenceOptions: TokenCachePersistenceOptions;
|
|
@@ -237,6 +247,8 @@ export const AzurePowerShellCredential: {
|
|
|
237
247
|
export type AzurePowerShellCredential = AzurePowerShellCredential$instance;
|
|
238
248
|
|
|
239
249
|
export interface AzurePowerShellCredentialOptions$instance extends TokenCredentialOptions {
|
|
250
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
251
|
+
|
|
240
252
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
241
253
|
ProcessTimeout: Nullable<TimeSpan>;
|
|
242
254
|
TenantId: string;
|
|
@@ -273,7 +285,6 @@ export interface ChainedTokenCredential$instance extends TokenCredential {
|
|
|
273
285
|
|
|
274
286
|
|
|
275
287
|
export const ChainedTokenCredential: {
|
|
276
|
-
new(): ChainedTokenCredential;
|
|
277
288
|
new(sources: TokenCredential[]): ChainedTokenCredential;
|
|
278
289
|
};
|
|
279
290
|
|
|
@@ -289,7 +300,6 @@ export interface ClientAssertionCredential$instance extends TokenCredential {
|
|
|
289
300
|
|
|
290
301
|
|
|
291
302
|
export const ClientAssertionCredential: {
|
|
292
|
-
new(): ClientAssertionCredential;
|
|
293
303
|
new(tenantId: string, clientId: string, assertionCallback: Func<CancellationToken, Task<System_Internal.String>>, options: ClientAssertionCredentialOptions): ClientAssertionCredential;
|
|
294
304
|
new(tenantId: string, clientId: string, assertionCallback: Func<System_Internal.String>, options: ClientAssertionCredentialOptions): ClientAssertionCredential;
|
|
295
305
|
};
|
|
@@ -298,6 +308,10 @@ export const ClientAssertionCredential: {
|
|
|
298
308
|
export type ClientAssertionCredential = ClientAssertionCredential$instance;
|
|
299
309
|
|
|
300
310
|
export interface ClientAssertionCredentialOptions$instance extends TokenCredentialOptions {
|
|
311
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
312
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
313
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
314
|
+
|
|
301
315
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
302
316
|
DisableInstanceDiscovery: boolean;
|
|
303
317
|
TokenCachePersistenceOptions: TokenCachePersistenceOptions;
|
|
@@ -320,7 +334,6 @@ export interface ClientCertificateCredential$instance extends TokenCredential {
|
|
|
320
334
|
|
|
321
335
|
|
|
322
336
|
export const ClientCertificateCredential: {
|
|
323
|
-
new(): ClientCertificateCredential;
|
|
324
337
|
new(tenantId: string, clientId: string, clientCertificatePath: string): ClientCertificateCredential;
|
|
325
338
|
new(tenantId: string, clientId: string, clientCertificatePath: string, options: TokenCredentialOptions): ClientCertificateCredential;
|
|
326
339
|
new(tenantId: string, clientId: string, clientCertificatePath: string, options: ClientCertificateCredentialOptions): ClientCertificateCredential;
|
|
@@ -333,6 +346,10 @@ export const ClientCertificateCredential: {
|
|
|
333
346
|
export type ClientCertificateCredential = ClientCertificateCredential$instance;
|
|
334
347
|
|
|
335
348
|
export interface ClientCertificateCredentialOptions$instance extends TokenCredentialOptions {
|
|
349
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
350
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
351
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
352
|
+
|
|
336
353
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
337
354
|
DisableInstanceDiscovery: boolean;
|
|
338
355
|
SendCertificateChain: boolean;
|
|
@@ -356,7 +373,6 @@ export interface ClientSecretCredential$instance extends TokenCredential {
|
|
|
356
373
|
|
|
357
374
|
|
|
358
375
|
export const ClientSecretCredential: {
|
|
359
|
-
new(): ClientSecretCredential;
|
|
360
376
|
new(tenantId: string, clientId: string, clientSecret: string): ClientSecretCredential;
|
|
361
377
|
new(tenantId: string, clientId: string, clientSecret: string, options: ClientSecretCredentialOptions): ClientSecretCredential;
|
|
362
378
|
new(tenantId: string, clientId: string, clientSecret: string, options: TokenCredentialOptions): ClientSecretCredential;
|
|
@@ -366,6 +382,10 @@ export const ClientSecretCredential: {
|
|
|
366
382
|
export type ClientSecretCredential = ClientSecretCredential$instance;
|
|
367
383
|
|
|
368
384
|
export interface ClientSecretCredentialOptions$instance extends TokenCredentialOptions {
|
|
385
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
386
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
387
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
388
|
+
|
|
369
389
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
370
390
|
DisableInstanceDiscovery: boolean;
|
|
371
391
|
TokenCachePersistenceOptions: TokenCachePersistenceOptions;
|
|
@@ -380,13 +400,14 @@ export const ClientSecretCredentialOptions: {
|
|
|
380
400
|
export type ClientSecretCredentialOptions = ClientSecretCredentialOptions$instance;
|
|
381
401
|
|
|
382
402
|
export interface CredentialUnavailableException$instance extends AuthenticationFailedException {
|
|
403
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
404
|
+
|
|
383
405
|
}
|
|
384
406
|
|
|
385
407
|
|
|
386
408
|
export const CredentialUnavailableException: {
|
|
387
409
|
new(message: string): CredentialUnavailableException;
|
|
388
410
|
new(message: string, innerException: Exception): CredentialUnavailableException;
|
|
389
|
-
new(info: SerializationInfo, context: StreamingContext): CredentialUnavailableException;
|
|
390
411
|
};
|
|
391
412
|
|
|
392
413
|
|
|
@@ -401,7 +422,6 @@ export interface DefaultAzureCredential$instance extends TokenCredential {
|
|
|
401
422
|
|
|
402
423
|
|
|
403
424
|
export const DefaultAzureCredential: {
|
|
404
|
-
new(): DefaultAzureCredential;
|
|
405
425
|
new(includeInteractiveCredentials: boolean): DefaultAzureCredential;
|
|
406
426
|
new(options: DefaultAzureCredentialOptions): DefaultAzureCredential;
|
|
407
427
|
};
|
|
@@ -410,6 +430,9 @@ export const DefaultAzureCredential: {
|
|
|
410
430
|
export type DefaultAzureCredential = DefaultAzureCredential$instance;
|
|
411
431
|
|
|
412
432
|
export interface DefaultAzureCredentialOptions$instance extends TokenCredentialOptions {
|
|
433
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
434
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
435
|
+
|
|
413
436
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
414
437
|
CredentialProcessTimeout: Nullable<TimeSpan>;
|
|
415
438
|
DisableInstanceDiscovery: boolean;
|
|
@@ -466,6 +489,10 @@ export const DeviceCodeCredential: {
|
|
|
466
489
|
export type DeviceCodeCredential = DeviceCodeCredential$instance;
|
|
467
490
|
|
|
468
491
|
export interface DeviceCodeCredentialOptions$instance extends TokenCredentialOptions {
|
|
492
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
493
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
494
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
495
|
+
|
|
469
496
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
470
497
|
AuthenticationRecord: AuthenticationRecord;
|
|
471
498
|
ClientId: string;
|
|
@@ -502,6 +529,9 @@ export const EnvironmentCredential: {
|
|
|
502
529
|
export type EnvironmentCredential = EnvironmentCredential$instance;
|
|
503
530
|
|
|
504
531
|
export interface EnvironmentCredentialOptions$instance extends TokenCredentialOptions {
|
|
532
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
533
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
534
|
+
|
|
505
535
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
506
536
|
DisableInstanceDiscovery: boolean;
|
|
507
537
|
}
|
|
@@ -537,6 +567,10 @@ export const InteractiveBrowserCredential: {
|
|
|
537
567
|
export type InteractiveBrowserCredential = InteractiveBrowserCredential$instance;
|
|
538
568
|
|
|
539
569
|
export interface InteractiveBrowserCredentialOptions$instance extends TokenCredentialOptions {
|
|
570
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
571
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
572
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
573
|
+
|
|
540
574
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
541
575
|
AuthenticationRecord: AuthenticationRecord;
|
|
542
576
|
BrowserCustomization: BrowserCustomizationOptions;
|
|
@@ -566,7 +600,6 @@ export interface ManagedIdentityCredential$instance extends TokenCredential {
|
|
|
566
600
|
|
|
567
601
|
|
|
568
602
|
export const ManagedIdentityCredential: {
|
|
569
|
-
new(): ManagedIdentityCredential;
|
|
570
603
|
new(clientId: string, options: TokenCredentialOptions): ManagedIdentityCredential;
|
|
571
604
|
new(resourceId: ResourceIdentifier, options: TokenCredentialOptions): ManagedIdentityCredential;
|
|
572
605
|
new(id: ManagedIdentityId): ManagedIdentityCredential;
|
|
@@ -588,12 +621,11 @@ export const ManagedIdentityCredentialOptions: {
|
|
|
588
621
|
export type ManagedIdentityCredentialOptions = ManagedIdentityCredentialOptions$instance;
|
|
589
622
|
|
|
590
623
|
export interface ManagedIdentityId$instance {
|
|
591
|
-
ToString(): string
|
|
624
|
+
ToString(): string;
|
|
592
625
|
}
|
|
593
626
|
|
|
594
627
|
|
|
595
628
|
export const ManagedIdentityId: {
|
|
596
|
-
new(): ManagedIdentityId;
|
|
597
629
|
readonly SystemAssigned: ManagedIdentityId;
|
|
598
630
|
FromUserAssignedClientId(id: string): ManagedIdentityId;
|
|
599
631
|
FromUserAssignedObjectId(id: string): ManagedIdentityId;
|
|
@@ -612,7 +644,6 @@ export interface OnBehalfOfCredential$instance extends TokenCredential {
|
|
|
612
644
|
|
|
613
645
|
|
|
614
646
|
export const OnBehalfOfCredential: {
|
|
615
|
-
new(): OnBehalfOfCredential;
|
|
616
647
|
new(tenantId: string, clientId: string, clientCertificate: X509Certificate2, userAssertion: string): OnBehalfOfCredential;
|
|
617
648
|
new(tenantId: string, clientId: string, clientCertificate: X509Certificate2, userAssertion: string, options: OnBehalfOfCredentialOptions): OnBehalfOfCredential;
|
|
618
649
|
new(tenantId: string, clientId: string, clientSecret: string, userAssertion: string): OnBehalfOfCredential;
|
|
@@ -625,6 +656,10 @@ export const OnBehalfOfCredential: {
|
|
|
625
656
|
export type OnBehalfOfCredential = OnBehalfOfCredential$instance;
|
|
626
657
|
|
|
627
658
|
export interface OnBehalfOfCredentialOptions$instance extends TokenCredentialOptions {
|
|
659
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
660
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
661
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
662
|
+
|
|
628
663
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
629
664
|
DisableInstanceDiscovery: boolean;
|
|
630
665
|
SendCertificateChain: boolean;
|
|
@@ -657,6 +692,9 @@ export const SharedTokenCacheCredential: {
|
|
|
657
692
|
export type SharedTokenCacheCredential = SharedTokenCacheCredential$instance;
|
|
658
693
|
|
|
659
694
|
export interface SharedTokenCacheCredentialOptions$instance extends TokenCredentialOptions {
|
|
695
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
696
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
697
|
+
|
|
660
698
|
AuthenticationRecord: AuthenticationRecord;
|
|
661
699
|
ClientId: string;
|
|
662
700
|
DisableInstanceDiscovery: boolean;
|
|
@@ -695,7 +733,6 @@ export interface TokenCacheRefreshArgs$instance {
|
|
|
695
733
|
|
|
696
734
|
|
|
697
735
|
export const TokenCacheRefreshArgs: {
|
|
698
|
-
new(): TokenCacheRefreshArgs;
|
|
699
736
|
};
|
|
700
737
|
|
|
701
738
|
|
|
@@ -708,7 +745,6 @@ export interface TokenCacheUpdatedArgs$instance {
|
|
|
708
745
|
|
|
709
746
|
|
|
710
747
|
export const TokenCacheUpdatedArgs: {
|
|
711
|
-
new(): TokenCacheUpdatedArgs;
|
|
712
748
|
};
|
|
713
749
|
|
|
714
750
|
|
|
@@ -740,19 +776,14 @@ export const TokenCredentialOptions: {
|
|
|
740
776
|
|
|
741
777
|
export type TokenCredentialOptions = TokenCredentialOptions$instance;
|
|
742
778
|
|
|
743
|
-
export
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
export interface UnsafeTokenCacheOptions$instance extends UnsafeTokenCacheOptions$protected, TokenCachePersistenceOptions {
|
|
779
|
+
export interface UnsafeTokenCacheOptions$instance extends TokenCachePersistenceOptions {
|
|
780
|
+
RefreshCacheAsync(): Task<ReadOnlyMemory<System_Internal.Byte>>;
|
|
781
|
+
RefreshCacheAsync(args: TokenCacheRefreshArgs, cancellationToken?: CancellationToken): Task<TokenCacheData>;
|
|
782
|
+
TokenCacheUpdatedAsync(tokenCacheUpdatedArgs: TokenCacheUpdatedArgs): Task;
|
|
751
783
|
}
|
|
752
784
|
|
|
753
785
|
|
|
754
|
-
export const UnsafeTokenCacheOptions: {
|
|
755
|
-
new(): UnsafeTokenCacheOptions;
|
|
786
|
+
export const UnsafeTokenCacheOptions: (abstract new() => UnsafeTokenCacheOptions) & {
|
|
756
787
|
};
|
|
757
788
|
|
|
758
789
|
|
|
@@ -771,7 +802,6 @@ export interface UsernamePasswordCredential$instance extends TokenCredential {
|
|
|
771
802
|
|
|
772
803
|
|
|
773
804
|
export const UsernamePasswordCredential: {
|
|
774
|
-
new(): UsernamePasswordCredential;
|
|
775
805
|
new(username: string, password: string, tenantId: string, clientId: string): UsernamePasswordCredential;
|
|
776
806
|
new(username: string, password: string, tenantId: string, clientId: string, options: TokenCredentialOptions): UsernamePasswordCredential;
|
|
777
807
|
new(username: string, password: string, tenantId: string, clientId: string, options: UsernamePasswordCredentialOptions): UsernamePasswordCredential;
|
|
@@ -781,6 +811,10 @@ export const UsernamePasswordCredential: {
|
|
|
781
811
|
export type UsernamePasswordCredential = UsernamePasswordCredential$instance;
|
|
782
812
|
|
|
783
813
|
export interface UsernamePasswordCredentialOptions$instance extends TokenCredentialOptions {
|
|
814
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
815
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
816
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsTokenCachePersistenceOptions: never;
|
|
817
|
+
|
|
784
818
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
785
819
|
DisableInstanceDiscovery: boolean;
|
|
786
820
|
TokenCachePersistenceOptions: TokenCachePersistenceOptions;
|
|
@@ -811,6 +845,8 @@ export const VisualStudioCodeCredential: {
|
|
|
811
845
|
export type VisualStudioCodeCredential = VisualStudioCodeCredential$instance;
|
|
812
846
|
|
|
813
847
|
export interface VisualStudioCodeCredentialOptions$instance extends TokenCredentialOptions {
|
|
848
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
849
|
+
|
|
814
850
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
815
851
|
TenantId: string;
|
|
816
852
|
}
|
|
@@ -840,6 +876,8 @@ export const VisualStudioCredential: {
|
|
|
840
876
|
export type VisualStudioCredential = VisualStudioCredential$instance;
|
|
841
877
|
|
|
842
878
|
export interface VisualStudioCredentialOptions$instance extends TokenCredentialOptions {
|
|
879
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
880
|
+
|
|
843
881
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
844
882
|
ProcessTimeout: Nullable<TimeSpan>;
|
|
845
883
|
TenantId: string;
|
|
@@ -870,6 +908,9 @@ export const WorkloadIdentityCredential: {
|
|
|
870
908
|
export type WorkloadIdentityCredential = WorkloadIdentityCredential$instance;
|
|
871
909
|
|
|
872
910
|
export interface WorkloadIdentityCredentialOptions$instance extends TokenCredentialOptions {
|
|
911
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
912
|
+
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
913
|
+
|
|
873
914
|
AdditionallyAllowedTenants: IList<System_Internal.String>;
|
|
874
915
|
ClientId: string;
|
|
875
916
|
DisableInstanceDiscovery: boolean;
|
|
@@ -20,16 +20,16 @@ export enum CloudEventDataFormat {
|
|
|
20
20
|
|
|
21
21
|
export interface CloudEvent$instance {
|
|
22
22
|
get Data(): BinaryData | undefined;
|
|
23
|
-
set Data(value: BinaryData);
|
|
23
|
+
set Data(value: BinaryData | undefined);
|
|
24
24
|
get DataContentType(): string | undefined;
|
|
25
|
-
set DataContentType(value: string);
|
|
25
|
+
set DataContentType(value: string | undefined);
|
|
26
26
|
get DataSchema(): string | undefined;
|
|
27
|
-
set DataSchema(value: string);
|
|
27
|
+
set DataSchema(value: string | undefined);
|
|
28
28
|
readonly ExtensionAttributes: IDictionary<System_Internal.String, unknown>;
|
|
29
29
|
Id: string;
|
|
30
30
|
Source: string;
|
|
31
31
|
get Subject(): string | undefined;
|
|
32
|
-
set Subject(value: string);
|
|
32
|
+
set Subject(value: string | undefined);
|
|
33
33
|
Time: Nullable<DateTimeOffset>;
|
|
34
34
|
Type: string;
|
|
35
35
|
}
|
|
@@ -45,15 +45,11 @@ export const CloudEvent: {
|
|
|
45
45
|
|
|
46
46
|
export type CloudEvent = CloudEvent$instance;
|
|
47
47
|
|
|
48
|
-
export
|
|
49
|
-
protected ContentTypeCore: Nullable<ContentType>;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
export interface MessageContent$instance extends MessageContent$protected {
|
|
48
|
+
export interface MessageContent$instance {
|
|
54
49
|
ContentType: Nullable<ContentType>;
|
|
50
|
+
ContentTypeCore: Nullable<ContentType>;
|
|
55
51
|
get Data(): BinaryData | undefined;
|
|
56
|
-
set Data(value: BinaryData);
|
|
52
|
+
set Data(value: BinaryData | undefined);
|
|
57
53
|
readonly IsReadOnly: boolean;
|
|
58
54
|
}
|
|
59
55
|
|
|
@@ -13,11 +13,12 @@ import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Ru
|
|
|
13
13
|
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization.js";
|
|
14
14
|
|
|
15
15
|
export interface OperationAbortedException$instance extends SystemException {
|
|
16
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
17
|
+
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
|
|
19
21
|
export const OperationAbortedException: {
|
|
20
|
-
new(): OperationAbortedException;
|
|
21
22
|
};
|
|
22
23
|
|
|
23
24
|
|