@fern-api/csharp-dynamic-snippets 2.13.1 → 2.15.0
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/dist/index.cjs +30 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -4
- package/dist/index.d.ts +14 -4
- package/dist/index.js +30 -30
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -93,7 +93,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
93
93
|
testUtils: string;
|
|
94
94
|
mockServerTest: string;
|
|
95
95
|
publicCore: string;
|
|
96
|
-
|
|
96
|
+
webSocketsCore: string;
|
|
97
97
|
publicCoreTest: string;
|
|
98
98
|
asIsTestUtils: string;
|
|
99
99
|
publicCoreClasses: string;
|
|
@@ -108,6 +108,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
108
108
|
useDotnetFormat: boolean;
|
|
109
109
|
enableWebsockets: boolean;
|
|
110
110
|
enableReadonlyConstants: boolean;
|
|
111
|
+
enableExplicitNullableOptional: boolean;
|
|
111
112
|
temporaryWebsocketEnvironments: Record<string, {
|
|
112
113
|
environments: Record<string, string>;
|
|
113
114
|
"default-environment"?: string | undefined;
|
|
@@ -245,7 +246,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
245
246
|
IdempotentRequestOptions: ast.ClassReference;
|
|
246
247
|
IdempotentRequestOptionsInterface: ast.ClassReference;
|
|
247
248
|
IStringEnum: ast.ClassReference;
|
|
248
|
-
|
|
249
|
+
WebSocketClient: ast.ClassReference;
|
|
249
250
|
QueryBuilder: ast.ClassReference;
|
|
250
251
|
OAuthTokenProvider: ast.ClassReference;
|
|
251
252
|
InferredAuthTokenProvider: ast.ClassReference;
|
|
@@ -255,8 +256,10 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
255
256
|
GrpcRequestOptions: ast.ClassReference;
|
|
256
257
|
GrpcChannelOptions: ast.ClassReference;
|
|
257
258
|
StringEnum: (genericType?: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
258
|
-
|
|
259
|
-
|
|
259
|
+
WebSocketEvent: (genericType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
260
|
+
ConnectionStatus: ast.ClassReference;
|
|
261
|
+
WebSocketConnected: ast.ClassReference;
|
|
262
|
+
WebSocketClosed: ast.ClassReference;
|
|
260
263
|
StringEnumSerializer: (enumClassReference: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
261
264
|
CustomPagerClass: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
262
265
|
Pager: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
@@ -368,8 +371,15 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
368
371
|
CancellationToken: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
369
372
|
Tasks: {
|
|
370
373
|
Task: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
374
|
+
ValueTask: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
371
375
|
};
|
|
372
376
|
};
|
|
377
|
+
ComponentModel: {
|
|
378
|
+
INotifyPropertyChanged: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
379
|
+
PropertyChangedEventHandler: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
380
|
+
};
|
|
381
|
+
IAsyncDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
382
|
+
IDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
373
383
|
};
|
|
374
384
|
get NUnit(): {
|
|
375
385
|
Framework: {
|
package/dist/index.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
93
93
|
testUtils: string;
|
|
94
94
|
mockServerTest: string;
|
|
95
95
|
publicCore: string;
|
|
96
|
-
|
|
96
|
+
webSocketsCore: string;
|
|
97
97
|
publicCoreTest: string;
|
|
98
98
|
asIsTestUtils: string;
|
|
99
99
|
publicCoreClasses: string;
|
|
@@ -108,6 +108,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
108
108
|
useDotnetFormat: boolean;
|
|
109
109
|
enableWebsockets: boolean;
|
|
110
110
|
enableReadonlyConstants: boolean;
|
|
111
|
+
enableExplicitNullableOptional: boolean;
|
|
111
112
|
temporaryWebsocketEnvironments: Record<string, {
|
|
112
113
|
environments: Record<string, string>;
|
|
113
114
|
"default-environment"?: string | undefined;
|
|
@@ -245,7 +246,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
245
246
|
IdempotentRequestOptions: ast.ClassReference;
|
|
246
247
|
IdempotentRequestOptionsInterface: ast.ClassReference;
|
|
247
248
|
IStringEnum: ast.ClassReference;
|
|
248
|
-
|
|
249
|
+
WebSocketClient: ast.ClassReference;
|
|
249
250
|
QueryBuilder: ast.ClassReference;
|
|
250
251
|
OAuthTokenProvider: ast.ClassReference;
|
|
251
252
|
InferredAuthTokenProvider: ast.ClassReference;
|
|
@@ -255,8 +256,10 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
255
256
|
GrpcRequestOptions: ast.ClassReference;
|
|
256
257
|
GrpcChannelOptions: ast.ClassReference;
|
|
257
258
|
StringEnum: (genericType?: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
258
|
-
|
|
259
|
-
|
|
259
|
+
WebSocketEvent: (genericType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
260
|
+
ConnectionStatus: ast.ClassReference;
|
|
261
|
+
WebSocketConnected: ast.ClassReference;
|
|
262
|
+
WebSocketClosed: ast.ClassReference;
|
|
260
263
|
StringEnumSerializer: (enumClassReference: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
261
264
|
CustomPagerClass: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
262
265
|
Pager: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
@@ -368,8 +371,15 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
368
371
|
CancellationToken: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
369
372
|
Tasks: {
|
|
370
373
|
Task: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
374
|
+
ValueTask: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
371
375
|
};
|
|
372
376
|
};
|
|
377
|
+
ComponentModel: {
|
|
378
|
+
INotifyPropertyChanged: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
379
|
+
PropertyChangedEventHandler: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
380
|
+
};
|
|
381
|
+
IAsyncDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
382
|
+
IDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
373
383
|
};
|
|
374
384
|
get NUnit(): {
|
|
375
385
|
Framework: {
|