@azure/event-hubs 5.7.0-alpha.20220103.3 → 5.7.0-alpha.20220111.2
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/package.json +2 -2
- package/types/3.1/event-hubs.d.ts +27 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/event-hubs",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "5.7.0-alpha.
|
|
4
|
+
"version": "5.7.0-alpha.20220111.2",
|
|
5
5
|
"description": "Azure Event Hubs SDK for JS.",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"cross-env": "^7.0.2",
|
|
153
153
|
"debug": "^4.1.1",
|
|
154
154
|
"dotenv": "^8.2.0",
|
|
155
|
-
"downlevel-dts": "
|
|
155
|
+
"downlevel-dts": "^0.8.0",
|
|
156
156
|
"eslint": "^7.15.0",
|
|
157
157
|
"esm": "^3.2.18",
|
|
158
158
|
"https-proxy-agent": "^5.0.0",
|
|
@@ -329,7 +329,16 @@ export declare class EventHubBufferedProducerClient {
|
|
|
329
329
|
* The options passed by the user when creating the EventHubBufferedProducerClient instance.
|
|
330
330
|
*/
|
|
331
331
|
private _clientOptions;
|
|
332
|
+
/*
|
|
333
|
+
* @readonly
|
|
334
|
+
* The name of the Event Hub instance for which this client is created.
|
|
335
|
+
*/
|
|
332
336
|
readonly eventHubName: string;
|
|
337
|
+
/*
|
|
338
|
+
* @readonly
|
|
339
|
+
* The fully qualified namespace of the Event Hub instance for which this client is created.
|
|
340
|
+
* This is likely to be similar to <yournamespace>.servicebus.windows.net.
|
|
341
|
+
*/
|
|
333
342
|
readonly fullyQualifiedNamespace: string;
|
|
334
343
|
/**
|
|
335
344
|
* The `EventHubBufferedProducerClient` class is used to send events to an Event Hub.
|
|
@@ -637,7 +646,16 @@ export declare class EventHubConsumerClient {
|
|
|
637
646
|
* Options for configuring load balancing.
|
|
638
647
|
*/
|
|
639
648
|
private readonly _loadBalancingOptions;
|
|
649
|
+
/*
|
|
650
|
+
* @readonly
|
|
651
|
+
* The name of the Event Hub instance for which this client is created.
|
|
652
|
+
*/
|
|
640
653
|
readonly eventHubName: string;
|
|
654
|
+
/*
|
|
655
|
+
* @readonly
|
|
656
|
+
* The fully qualified namespace of the Event Hub instance for which this client is created.
|
|
657
|
+
* This is likely to be similar to <yournamespace>.servicebus.windows.net.
|
|
658
|
+
*/
|
|
641
659
|
readonly fullyQualifiedNamespace: string;
|
|
642
660
|
/**
|
|
643
661
|
* The `EventHubConsumerClient` class is used to consume events from an Event Hub.
|
|
@@ -909,7 +927,16 @@ export declare class EventHubProducerClient {
|
|
|
909
927
|
* Map of partitionId to senders
|
|
910
928
|
*/
|
|
911
929
|
private _sendersMap;
|
|
930
|
+
/*
|
|
931
|
+
* @readonly
|
|
932
|
+
* The name of the Event Hub instance for which this client is created.
|
|
933
|
+
*/
|
|
912
934
|
readonly eventHubName: string;
|
|
935
|
+
/*
|
|
936
|
+
* @readonly
|
|
937
|
+
* The fully qualified namespace of the Event Hub instance for which this client is created.
|
|
938
|
+
* This is likely to be similar to <yournamespace>.servicebus.windows.net.
|
|
939
|
+
*/
|
|
913
940
|
readonly fullyQualifiedNamespace: string;
|
|
914
941
|
/**
|
|
915
942
|
* The `EventHubProducerClient` class is used to send events to an Event Hub.
|