@fern-api/csharp-dynamic-snippets 2.13.1 → 2.14.1
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 +23 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -4
- package/dist/index.d.ts +13 -4
- package/dist/index.js +23 -23
- 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;
|
|
@@ -245,7 +245,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
245
245
|
IdempotentRequestOptions: ast.ClassReference;
|
|
246
246
|
IdempotentRequestOptionsInterface: ast.ClassReference;
|
|
247
247
|
IStringEnum: ast.ClassReference;
|
|
248
|
-
|
|
248
|
+
WebSocketClient: ast.ClassReference;
|
|
249
249
|
QueryBuilder: ast.ClassReference;
|
|
250
250
|
OAuthTokenProvider: ast.ClassReference;
|
|
251
251
|
InferredAuthTokenProvider: ast.ClassReference;
|
|
@@ -255,8 +255,10 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
255
255
|
GrpcRequestOptions: ast.ClassReference;
|
|
256
256
|
GrpcChannelOptions: ast.ClassReference;
|
|
257
257
|
StringEnum: (genericType?: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
258
|
-
|
|
259
|
-
|
|
258
|
+
WebSocketEvent: (genericType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
259
|
+
ConnectionStatus: ast.ClassReference;
|
|
260
|
+
WebSocketConnected: ast.ClassReference;
|
|
261
|
+
WebSocketClosed: ast.ClassReference;
|
|
260
262
|
StringEnumSerializer: (enumClassReference: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
261
263
|
CustomPagerClass: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
262
264
|
Pager: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
@@ -368,8 +370,15 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
368
370
|
CancellationToken: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
369
371
|
Tasks: {
|
|
370
372
|
Task: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
373
|
+
ValueTask: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
371
374
|
};
|
|
372
375
|
};
|
|
376
|
+
ComponentModel: {
|
|
377
|
+
INotifyPropertyChanged: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
378
|
+
PropertyChangedEventHandler: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
379
|
+
};
|
|
380
|
+
IAsyncDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
381
|
+
IDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
373
382
|
};
|
|
374
383
|
get NUnit(): {
|
|
375
384
|
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;
|
|
@@ -245,7 +245,7 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
245
245
|
IdempotentRequestOptions: ast.ClassReference;
|
|
246
246
|
IdempotentRequestOptionsInterface: ast.ClassReference;
|
|
247
247
|
IStringEnum: ast.ClassReference;
|
|
248
|
-
|
|
248
|
+
WebSocketClient: ast.ClassReference;
|
|
249
249
|
QueryBuilder: ast.ClassReference;
|
|
250
250
|
OAuthTokenProvider: ast.ClassReference;
|
|
251
251
|
InferredAuthTokenProvider: ast.ClassReference;
|
|
@@ -255,8 +255,10 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
255
255
|
GrpcRequestOptions: ast.ClassReference;
|
|
256
256
|
GrpcChannelOptions: ast.ClassReference;
|
|
257
257
|
StringEnum: (genericType?: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
258
|
-
|
|
259
|
-
|
|
258
|
+
WebSocketEvent: (genericType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
259
|
+
ConnectionStatus: ast.ClassReference;
|
|
260
|
+
WebSocketConnected: ast.ClassReference;
|
|
261
|
+
WebSocketClosed: ast.ClassReference;
|
|
260
262
|
StringEnumSerializer: (enumClassReference: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
261
263
|
CustomPagerClass: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
262
264
|
Pager: (itemType: ast.Type | ast.ClassReference) => ast.ClassReference;
|
|
@@ -368,8 +370,15 @@ declare class DynamicSnippetsGeneratorContext extends AbstractDynamicSnippetsGen
|
|
|
368
370
|
CancellationToken: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
369
371
|
Tasks: {
|
|
370
372
|
Task: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
373
|
+
ValueTask: (ofType?: ast.Type) => _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
371
374
|
};
|
|
372
375
|
};
|
|
376
|
+
ComponentModel: {
|
|
377
|
+
INotifyPropertyChanged: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
378
|
+
PropertyChangedEventHandler: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
379
|
+
};
|
|
380
|
+
IAsyncDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
381
|
+
IDisposable: _fern_api_csharp_codegen_lib_ast.ClassReference;
|
|
373
382
|
};
|
|
374
383
|
get NUnit(): {
|
|
375
384
|
Framework: {
|