@azure/notification-hubs 1.0.0-beta.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/LICENSE +21 -0
- package/README.md +749 -0
- package/dist/index.js +2235 -0
- package/dist/index.js.map +1 -0
- package/dist-esm/src/client/cancelScheduledNotification.js +23 -0
- package/dist-esm/src/client/cancelScheduledNotification.js.map +1 -0
- package/dist-esm/src/client/createOrUpdateInstallation.js +24 -0
- package/dist-esm/src/client/createOrUpdateInstallation.js.map +1 -0
- package/dist-esm/src/client/createOrUpdateRegistration.js +17 -0
- package/dist-esm/src/client/createOrUpdateRegistration.js.map +1 -0
- package/dist-esm/src/client/createRegistration.js +24 -0
- package/dist-esm/src/client/createRegistration.js.map +1 -0
- package/dist-esm/src/client/createRegistrationId.js +26 -0
- package/dist-esm/src/client/createRegistrationId.js.map +1 -0
- package/dist-esm/src/client/deleteInstallation.js +22 -0
- package/dist-esm/src/client/deleteInstallation.js.map +1 -0
- package/dist-esm/src/client/deleteRegistration.js +25 -0
- package/dist-esm/src/client/deleteRegistration.js.map +1 -0
- package/dist-esm/src/client/getFeedbackContainerUrl.js +23 -0
- package/dist-esm/src/client/getFeedbackContainerUrl.js.map +1 -0
- package/dist-esm/src/client/getInstallation.js +23 -0
- package/dist-esm/src/client/getInstallation.js.map +1 -0
- package/dist-esm/src/client/getNotificationHubJob.js +24 -0
- package/dist-esm/src/client/getNotificationHubJob.js.map +1 -0
- package/dist-esm/src/client/getNotificationOutcomeDetails.js +24 -0
- package/dist-esm/src/client/getNotificationOutcomeDetails.js.map +1 -0
- package/dist-esm/src/client/getRegistration.js +24 -0
- package/dist-esm/src/client/getRegistration.js.map +1 -0
- package/dist-esm/src/client/index.js +44 -0
- package/dist-esm/src/client/index.js.map +1 -0
- package/dist-esm/src/client/internal/_client.js +75 -0
- package/dist-esm/src/client/internal/_client.js.map +1 -0
- package/dist-esm/src/client/internal/_createOrUpdateRegistrationDescription.js +31 -0
- package/dist-esm/src/client/internal/_createOrUpdateRegistrationDescription.js.map +1 -0
- package/dist-esm/src/client/internal/_scheduleNotificationPayload.js +37 -0
- package/dist-esm/src/client/internal/_scheduleNotificationPayload.js.map +1 -0
- package/dist-esm/src/client/internal/_sendNotificationPayload.js +51 -0
- package/dist-esm/src/client/internal/_sendNotificationPayload.js.map +1 -0
- package/dist-esm/src/client/listNotificationHubJobs.js +23 -0
- package/dist-esm/src/client/listNotificationHubJobs.js.map +1 -0
- package/dist-esm/src/client/listRegistrations.js +89 -0
- package/dist-esm/src/client/listRegistrations.js.map +1 -0
- package/dist-esm/src/client/listRegistrationsByTag.js +87 -0
- package/dist-esm/src/client/listRegistrationsByTag.js.map +1 -0
- package/dist-esm/src/client/scheduleBroadcastNotification.js +17 -0
- package/dist-esm/src/client/scheduleBroadcastNotification.js.map +1 -0
- package/dist-esm/src/client/scheduleNotification.js +18 -0
- package/dist-esm/src/client/scheduleNotification.js.map +1 -0
- package/dist-esm/src/client/sendBroadcastNotification.js +15 -0
- package/dist-esm/src/client/sendBroadcastNotification.js.map +1 -0
- package/dist-esm/src/client/sendDirectNotification.js +16 -0
- package/dist-esm/src/client/sendDirectNotification.js.map +1 -0
- package/dist-esm/src/client/sendNotification.js +16 -0
- package/dist-esm/src/client/sendNotification.js.map +1 -0
- package/dist-esm/src/client/submitNotificationHubJob.js +26 -0
- package/dist-esm/src/client/submitNotificationHubJob.js.map +1 -0
- package/dist-esm/src/client/updateInstallation.js +25 -0
- package/dist-esm/src/client/updateInstallation.js.map +1 -0
- package/dist-esm/src/client/updateRegistration.js +21 -0
- package/dist-esm/src/client/updateRegistration.js.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/models/installation.js +51 -0
- package/dist-esm/src/models/installation.js.map +1 -0
- package/dist-esm/src/models/notification.js +104 -0
- package/dist-esm/src/models/notification.js.map +1 -0
- package/dist-esm/src/models/notificationBuilder.js +169 -0
- package/dist-esm/src/models/notificationBuilder.js.map +1 -0
- package/dist-esm/src/models/notificationDetails.js +4 -0
- package/dist-esm/src/models/notificationDetails.js.map +1 -0
- package/dist-esm/src/models/notificationHubJob.js +4 -0
- package/dist-esm/src/models/notificationHubJob.js.map +1 -0
- package/dist-esm/src/models/options.js +4 -0
- package/dist-esm/src/models/options.js.map +1 -0
- package/dist-esm/src/models/registration.js +135 -0
- package/dist-esm/src/models/registration.js.map +1 -0
- package/dist-esm/src/models/response.js +4 -0
- package/dist-esm/src/models/response.js.map +1 -0
- package/dist-esm/src/notificationHubsClient.js +251 -0
- package/dist-esm/src/notificationHubsClient.js.map +1 -0
- package/dist-esm/src/serializers/notificationDetailsSerializer.js +58 -0
- package/dist-esm/src/serializers/notificationDetailsSerializer.js.map +1 -0
- package/dist-esm/src/serializers/notificationHubJobSerializer.js +74 -0
- package/dist-esm/src/serializers/notificationHubJobSerializer.js.map +1 -0
- package/dist-esm/src/serializers/registrationSerializer.js +375 -0
- package/dist-esm/src/serializers/registrationSerializer.js.map +1 -0
- package/dist-esm/src/utils/connectionStringUtils.js +37 -0
- package/dist-esm/src/utils/connectionStringUtils.js.map +1 -0
- package/dist-esm/src/utils/constants.js +11 -0
- package/dist-esm/src/utils/constants.js.map +1 -0
- package/dist-esm/src/utils/retryPolicy.js +144 -0
- package/dist-esm/src/utils/retryPolicy.js.map +1 -0
- package/dist-esm/src/utils/tracing.js +13 -0
- package/dist-esm/src/utils/tracing.js.map +1 -0
- package/dist-esm/src/utils/utils.js +130 -0
- package/dist-esm/src/utils/utils.js.map +1 -0
- package/dist-esm/src/utils/xmlUtils.js +101 -0
- package/dist-esm/src/utils/xmlUtils.js.map +1 -0
- package/package.json +144 -0
- package/types/3.1/notification-hubs.d.ts +1728 -0
- package/types/latest/notification-hubs.d.ts +1840 -0
- package/types/latest/tsdoc-metadata.json +11 -0
- package/types/src/client/cancelScheduledNotification.d.ts +13 -0
- package/types/src/client/cancelScheduledNotification.d.ts.map +1 -0
- package/types/src/client/createOrUpdateInstallation.d.ts +13 -0
- package/types/src/client/createOrUpdateInstallation.d.ts.map +1 -0
- package/types/src/client/createOrUpdateRegistration.d.ts +12 -0
- package/types/src/client/createOrUpdateRegistration.d.ts.map +1 -0
- package/types/src/client/createRegistration.d.ts +13 -0
- package/types/src/client/createRegistration.d.ts.map +1 -0
- package/types/src/client/createRegistrationId.d.ts +10 -0
- package/types/src/client/createRegistrationId.d.ts.map +1 -0
- package/types/src/client/deleteInstallation.d.ts +12 -0
- package/types/src/client/deleteInstallation.d.ts.map +1 -0
- package/types/src/client/deleteRegistration.d.ts +12 -0
- package/types/src/client/deleteRegistration.d.ts.map +1 -0
- package/types/src/client/getFeedbackContainerUrl.d.ts +11 -0
- package/types/src/client/getFeedbackContainerUrl.d.ts.map +1 -0
- package/types/src/client/getInstallation.d.ts +12 -0
- package/types/src/client/getInstallation.d.ts.map +1 -0
- package/types/src/client/getNotificationHubJob.d.ts +12 -0
- package/types/src/client/getNotificationHubJob.d.ts.map +1 -0
- package/types/src/client/getNotificationOutcomeDetails.d.ts +13 -0
- package/types/src/client/getNotificationOutcomeDetails.d.ts.map +1 -0
- package/types/src/client/getRegistration.d.ts +12 -0
- package/types/src/client/getRegistration.d.ts.map +1 -0
- package/types/src/client/index.d.ts +41 -0
- package/types/src/client/index.d.ts.map +1 -0
- package/types/src/client/internal/_client.d.ts +26 -0
- package/types/src/client/internal/_client.d.ts.map +1 -0
- package/types/src/client/internal/_createOrUpdateRegistrationDescription.d.ts +8 -0
- package/types/src/client/internal/_createOrUpdateRegistrationDescription.d.ts.map +1 -0
- package/types/src/client/internal/_scheduleNotificationPayload.d.ts +9 -0
- package/types/src/client/internal/_scheduleNotificationPayload.d.ts.map +1 -0
- package/types/src/client/internal/_sendNotificationPayload.d.ts +10 -0
- package/types/src/client/internal/_sendNotificationPayload.d.ts.map +1 -0
- package/types/src/client/listNotificationHubJobs.d.ts +11 -0
- package/types/src/client/listNotificationHubJobs.d.ts.map +1 -0
- package/types/src/client/listRegistrations.d.ts +12 -0
- package/types/src/client/listRegistrations.d.ts.map +1 -0
- package/types/src/client/listRegistrationsByTag.d.ts +13 -0
- package/types/src/client/listRegistrationsByTag.d.ts.map +1 -0
- package/types/src/client/scheduleBroadcastNotification.d.ts +16 -0
- package/types/src/client/scheduleBroadcastNotification.d.ts.map +1 -0
- package/types/src/client/scheduleNotification.d.ts +17 -0
- package/types/src/client/scheduleNotification.d.ts.map +1 -0
- package/types/src/client/sendBroadcastNotification.d.ts +14 -0
- package/types/src/client/sendBroadcastNotification.d.ts.map +1 -0
- package/types/src/client/sendDirectNotification.d.ts +16 -0
- package/types/src/client/sendDirectNotification.d.ts.map +1 -0
- package/types/src/client/sendNotification.d.ts +15 -0
- package/types/src/client/sendNotification.d.ts.map +1 -0
- package/types/src/client/submitNotificationHubJob.d.ts +13 -0
- package/types/src/client/submitNotificationHubJob.d.ts.map +1 -0
- package/types/src/client/updateInstallation.d.ts +14 -0
- package/types/src/client/updateInstallation.d.ts.map +1 -0
- package/types/src/client/updateRegistration.d.ts +12 -0
- package/types/src/client/updateRegistration.d.ts.map +1 -0
- package/types/src/index.d.ts +10 -0
- package/types/src/index.d.ts.map +1 -0
- package/types/src/models/installation.d.ts +200 -0
- package/types/src/models/installation.d.ts.map +1 -0
- package/types/src/models/notification.d.ts +166 -0
- package/types/src/models/notification.d.ts.map +1 -0
- package/types/src/models/notificationBuilder.d.ts +546 -0
- package/types/src/models/notificationBuilder.d.ts.map +1 -0
- package/types/src/models/notificationDetails.d.ts +87 -0
- package/types/src/models/notificationDetails.d.ts.map +1 -0
- package/types/src/models/notificationHubJob.d.ts +104 -0
- package/types/src/models/notificationHubJob.d.ts.map +1 -0
- package/types/src/models/options.d.ts +43 -0
- package/types/src/models/options.d.ts.map +1 -0
- package/types/src/models/registration.d.ts +368 -0
- package/types/src/models/registration.d.ts.map +1 -0
- package/types/src/models/response.d.ts +41 -0
- package/types/src/models/response.d.ts.map +1 -0
- package/types/src/notificationHubsClient.d.ts +190 -0
- package/types/src/notificationHubsClient.d.ts.map +1 -0
- package/types/src/serializers/notificationDetailsSerializer.d.ts +7 -0
- package/types/src/serializers/notificationDetailsSerializer.d.ts.map +1 -0
- package/types/src/serializers/notificationHubJobSerializer.d.ts +21 -0
- package/types/src/serializers/notificationHubJobSerializer.d.ts.map +1 -0
- package/types/src/serializers/registrationSerializer.d.ts +193 -0
- package/types/src/serializers/registrationSerializer.d.ts.map +1 -0
- package/types/src/utils/connectionStringUtils.d.ts +37 -0
- package/types/src/utils/connectionStringUtils.d.ts.map +1 -0
- package/types/src/utils/constants.d.ts +9 -0
- package/types/src/utils/constants.d.ts.map +1 -0
- package/types/src/utils/retryPolicy.d.ts +72 -0
- package/types/src/utils/retryPolicy.d.ts.map +1 -0
- package/types/src/utils/tracing.d.ts +6 -0
- package/types/src/utils/tracing.d.ts.map +1 -0
- package/types/src/utils/utils.d.ts +65 -0
- package/types/src/utils/utils.d.ts.map +1 -0
- package/types/src/utils/xmlUtils.d.ts +46 -0
- package/types/src/utils/xmlUtils.d.ts.map +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.28.6"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { NotificationHubsResponse } from "../models/response.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Cancels the scheduled notification with the given notification ID.
|
|
6
|
+
* NOTE: This is only available in Standard SKU Azure Notification Hubs.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param notificationId - The notification ID from the scheduled notification.
|
|
9
|
+
* @param options - The operation options.
|
|
10
|
+
* @returns A notification hub response with correlation ID and tracking ID.
|
|
11
|
+
*/
|
|
12
|
+
export declare function cancelScheduledNotification(context: NotificationHubsClientContext, notificationId: string, options?: OperationOptions): Promise<NotificationHubsResponse>;
|
|
13
|
+
//# sourceMappingURL=cancelScheduledNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancelScheduledNotification.d.ts","sourceRoot":"","sources":["../../../src/client/cancelScheduledNotification.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;;GAOG;AACH,wBAAgB,2BAA2B,CACzC,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,wBAAwB,CAAC,CAgBnC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Installation } from "../models/installation.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsResponse } from "../models/response.js";
|
|
4
|
+
import { OperationOptions } from "@azure/core-client";
|
|
5
|
+
/**
|
|
6
|
+
* Creates or overwrites an installation to a Notification Hub.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param installation - The installation to create or overwrite.
|
|
9
|
+
* @param options - Configuration options for the create or update installation operation.
|
|
10
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
11
|
+
*/
|
|
12
|
+
export declare function createOrUpdateInstallation(context: NotificationHubsClientContext, installation: Installation, options?: OperationOptions): Promise<NotificationHubsResponse>;
|
|
13
|
+
//# sourceMappingURL=createOrUpdateInstallation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createOrUpdateInstallation.d.ts","sourceRoot":"","sources":["../../../src/client/createOrUpdateInstallation.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,wBAAwB,CAAC,CAkBnC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
import { RegistrationDescription } from "../models/registration.js";
|
|
4
|
+
/**
|
|
5
|
+
* Creates or updates a registration.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param registration - The registration to create or update.
|
|
8
|
+
* @param options - The operation options.
|
|
9
|
+
* @returns The created or updated registration description.
|
|
10
|
+
*/
|
|
11
|
+
export declare function createOrUpdateRegistration(context: NotificationHubsClientContext, registration: RegistrationDescription, options?: OperationOptions): Promise<RegistrationDescription>;
|
|
12
|
+
//# sourceMappingURL=createOrUpdateRegistration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createOrUpdateRegistration.d.ts","sourceRoot":"","sources":["../../../src/client/createOrUpdateRegistration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAIpE;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,uBAAuB,EACrC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,uBAAuB,CAAC,CAalC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
import { RegistrationDescription } from "../models/registration.js";
|
|
4
|
+
/**
|
|
5
|
+
* Creates a new registration. This method generates a registration ID,
|
|
6
|
+
* which you can subsequently use to retrieve, update, and delete this registration.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param registration - The registration to create.
|
|
9
|
+
* @param options - Options for creating a new registration.
|
|
10
|
+
* @returns The newly created registration description.
|
|
11
|
+
*/
|
|
12
|
+
export declare function createRegistration(context: NotificationHubsClientContext, registration: RegistrationDescription, options?: OperationOptions): Promise<RegistrationDescription>;
|
|
13
|
+
//# sourceMappingURL=createRegistration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createRegistration.d.ts","sourceRoot":"","sources":["../../../src/client/createRegistration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAKpE;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,uBAAuB,EACrC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,uBAAuB,CAAC,CAclC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
/**
|
|
4
|
+
* Creates a new registration ID.
|
|
5
|
+
* @param context - The Notification Hubs client.
|
|
6
|
+
* @param options - The options for creating a new registration ID.
|
|
7
|
+
* @returns The newly created registration ID.
|
|
8
|
+
*/
|
|
9
|
+
export declare function createRegistrationId(context: NotificationHubsClientContext, options?: OperationOptions): Promise<string>;
|
|
10
|
+
//# sourceMappingURL=createRegistrationId.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createRegistrationId.d.ts","sourceRoot":"","sources":["../../../src/client/createRegistrationId.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,6BAA6B,EACtC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,MAAM,CAAC,CAsBjB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { NotificationHubsResponse } from "../models/response.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Deletes an installation from a Notification Hub.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param installationId - The installation ID of the installation to delete.
|
|
8
|
+
* @param options - Configuration options for the installation delete operation.
|
|
9
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
10
|
+
*/
|
|
11
|
+
export declare function deleteInstallation(context: NotificationHubsClientContext, installationId: string, options?: OperationOptions): Promise<NotificationHubsResponse>;
|
|
12
|
+
//# sourceMappingURL=deleteInstallation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deleteInstallation.d.ts","sourceRoot":"","sources":["../../../src/client/deleteInstallation.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,wBAAwB,CAAC,CAgBnC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EntityOperationOptions } from "../models/options.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsResponse } from "../models/response.js";
|
|
4
|
+
/**
|
|
5
|
+
* Deletes a registration with the given registration ID.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param registrationId - The registration ID of the registration to delete.
|
|
8
|
+
* @param options - The options for delete operations including the ETag
|
|
9
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
10
|
+
*/
|
|
11
|
+
export declare function deleteRegistration(context: NotificationHubsClientContext, registrationId: string, options?: EntityOperationOptions): Promise<NotificationHubsResponse>;
|
|
12
|
+
//# sourceMappingURL=deleteRegistration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deleteRegistration.d.ts","sourceRoot":"","sources":["../../../src/client/deleteRegistration.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAIjE;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,sBAA2B,GACnC,OAAO,CAAC,wBAAwB,CAAC,CAkBnC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves an Azure Storage container URL. The container has feedback data for the notification hub.
|
|
5
|
+
* The caller can then use the Azure Storage Services SDK to retrieve the contents of the container.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param options - The options for getting the push notification feedback container URL.
|
|
8
|
+
* @returns The URL of the Azure Storage Container containing the feedback data.
|
|
9
|
+
*/
|
|
10
|
+
export declare function getFeedbackContainerUrl(context: NotificationHubsClientContext, options?: OperationOptions): Promise<string>;
|
|
11
|
+
//# sourceMappingURL=getFeedbackContainerUrl.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getFeedbackContainerUrl.d.ts","sourceRoot":"","sources":["../../../src/client/getFeedbackContainerUrl.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACrC,OAAO,EAAE,6BAA6B,EACtC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,MAAM,CAAC,CAgBjB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Installation } from "../models/installation.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Gets an Azure Notification Hub installation by the installation ID.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param installationId - The ID of the installation to get.
|
|
8
|
+
* @param options - Configuration options for the get installation operation.
|
|
9
|
+
* @returns The installation that matches the installation ID.
|
|
10
|
+
*/
|
|
11
|
+
export declare function getInstallation(context: NotificationHubsClientContext, installationId: string, options?: OperationOptions): Promise<Installation>;
|
|
12
|
+
//# sourceMappingURL=getInstallation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getInstallation.d.ts","sourceRoot":"","sources":["../../../src/client/getInstallation.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;GAMG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,YAAY,CAAC,CAgBvB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationHubJob } from "../models/notificationHubJob.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Gets a Notification Hub Job by the ID.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param jobId - The Notification Hub Job ID.
|
|
8
|
+
* @param options - The operation options.
|
|
9
|
+
* @returns The Notification Hub Job with the matching ID.
|
|
10
|
+
*/
|
|
11
|
+
export declare function getNotificationHubJob(context: NotificationHubsClientContext, jobId: string, options?: OperationOptions): Promise<NotificationHubJob>;
|
|
12
|
+
//# sourceMappingURL=getNotificationHubJob.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNotificationHubJob.d.ts","sourceRoot":"","sources":["../../../src/client/getNotificationHubJob.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAItD;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CACnC,OAAO,EAAE,6BAA6B,EACtC,KAAK,EAAE,MAAM,EACb,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,kBAAkB,CAAC,CAiB7B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { NotificationDetails } from "../models/notificationDetails.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Retrieves the results of a send operation. This can retrieve intermediate results if the send is being processed
|
|
6
|
+
* or final results if the Send* has completed. This API can only be called for Standard SKU and above.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param notificationId - The notification ID returned from the send operation.
|
|
9
|
+
* @param options - The operation options.
|
|
10
|
+
* @returns The results of the send operation.
|
|
11
|
+
*/
|
|
12
|
+
export declare function getNotificationOutcomeDetails(context: NotificationHubsClientContext, notificationId: string, options?: OperationOptions): Promise<NotificationDetails>;
|
|
13
|
+
//# sourceMappingURL=getNotificationOutcomeDetails.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getNotificationOutcomeDetails.d.ts","sourceRoot":"","sources":["../../../src/client/getNotificationOutcomeDetails.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAItD;;;;;;;GAOG;AACH,wBAAgB,6BAA6B,CAC3C,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,mBAAmB,CAAC,CAe9B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
import { RegistrationDescription } from "../models/registration.js";
|
|
4
|
+
/**
|
|
5
|
+
* Gets a registration by the given registration ID.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param registrationId - The ID of the registration to get.
|
|
8
|
+
* @param options - The options for getting a registration by ID.
|
|
9
|
+
* @returns A RegistrationDescription that has the given registration ID.
|
|
10
|
+
*/
|
|
11
|
+
export declare function getRegistration(context: NotificationHubsClientContext, registrationId: string, options?: OperationOptions): Promise<RegistrationDescription>;
|
|
12
|
+
//# sourceMappingURL=getRegistration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRegistration.d.ts","sourceRoot":"","sources":["../../../src/client/getRegistration.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAIpE;;;;;;GAMG;AACH,wBAAgB,eAAe,CAC7B,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,uBAAuB,CAAC,CAiBlC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
+
import { HttpHeaders, PipelineRequest, PipelineResponse } from "@azure/core-rest-pipeline";
|
|
3
|
+
import { NotificationHubsClientOptions } from "../models/options.js";
|
|
4
|
+
import { SasTokenProvider } from "@azure/core-amqp";
|
|
5
|
+
/**
|
|
6
|
+
* Represents the Notification Hubs SDK client context.
|
|
7
|
+
*/
|
|
8
|
+
export interface NotificationHubsClientContext {
|
|
9
|
+
/**
|
|
10
|
+
* The SAS Token Provider for connecting to Notification Hubs.
|
|
11
|
+
*/
|
|
12
|
+
readonly sasTokenProvider: SasTokenProvider;
|
|
13
|
+
/**
|
|
14
|
+
* The base URL for the Notification Hub namespace.
|
|
15
|
+
*/
|
|
16
|
+
readonly baseUrl: string;
|
|
17
|
+
/**
|
|
18
|
+
* The Notification Hub name.
|
|
19
|
+
*/
|
|
20
|
+
readonly hubName: string;
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
*/
|
|
24
|
+
sendRequest(request: PipelineRequest): Promise<PipelineResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
createHeaders(): HttpHeaders;
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
requestUrl(): URL;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Creates a NotificationHubClient from the Access Policy connection string and hub name.
|
|
36
|
+
* @param connectionString - The Access Policy connection string for the notification hub.
|
|
37
|
+
* @param hubName - The notification hub name.
|
|
38
|
+
* @returns A NotificationHubsClientContext initialized from the connection string and hub name.
|
|
39
|
+
*/
|
|
40
|
+
export declare function createClientContext(connectionString: string, hubName: string, options?: NotificationHubsClientOptions): NotificationHubsClientContext;
|
|
41
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/index.ts"],"names":[],"mappings":";AAGA,OAAO,EACL,WAAW,EACX,eAAe,EACf,gBAAgB,EAEjB,MAAM,2BAA2B,CAAC;AAOnC,OAAO,EAAE,6BAA6B,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAKpD;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,CAAC;IAE5C;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,WAAW,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAEjE;;OAEG;IACH,aAAa,IAAI,WAAW,CAAC;IAE7B;;OAEG;IACH,UAAU,IAAI,GAAG,CAAC;CACnB;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CACjC,gBAAgB,EAAE,MAAM,EACxB,OAAO,EAAE,MAAM,EACf,OAAO,GAAE,6BAAkC,GAC1C,6BAA6B,CAE/B"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
+
import { HttpHeaders, HttpMethods, PipelineRequest, PipelineResponse } from "@azure/core-rest-pipeline";
|
|
3
|
+
import { NotificationHubsMessageResponse, NotificationHubsResponse } from "../../models/response.js";
|
|
4
|
+
import { NotificationHubsClientContext } from "../index.js";
|
|
5
|
+
import { OperationOptions } from "@azure/core-client";
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
export declare function createRequest(endpoint: URL, method: HttpMethods, headers: HttpHeaders, options: OperationOptions): PipelineRequest;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
export declare function parseNotificationResponse(response: PipelineResponse): NotificationHubsResponse;
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare function parseNotificationSendResponse(response: PipelineResponse): NotificationHubsMessageResponse;
|
|
18
|
+
/**
|
|
19
|
+
* Sends a request through the client context.
|
|
20
|
+
* @param context - The client context to use.
|
|
21
|
+
* @param request - The HTTP request to send.
|
|
22
|
+
* @param successStatusCode - A status code or list of status codes to check for success.
|
|
23
|
+
* @returns The HTTP Response.
|
|
24
|
+
*/
|
|
25
|
+
export declare function sendRequest(context: NotificationHubsClientContext, request: PipelineRequest, successStatusCode: number | number[]): Promise<PipelineResponse>;
|
|
26
|
+
//# sourceMappingURL=_client.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_client.d.ts","sourceRoot":"","sources":["../../../../src/client/internal/_client.ts"],"names":[],"mappings":";AAGA,OAAO,EACL,WAAW,EACX,WAAW,EACX,eAAe,EACf,gBAAgB,EAGjB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,+BAA+B,EAC/B,wBAAwB,EACzB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAItD;;GAEG;AACH,wBAAgB,aAAa,CAC3B,QAAQ,EAAE,GAAG,EACb,MAAM,EAAE,WAAW,EACnB,OAAO,EAAE,WAAW,EACpB,OAAO,EAAE,gBAAgB,GACxB,eAAe,CASjB;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,gBAAgB,GAAG,wBAAwB,CAU9F;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,gBAAgB,GACzB,+BAA+B,CAYjC;AAED;;;;;;GAMG;AACH,wBAAsB,WAAW,CAC/B,OAAO,EAAE,6BAA6B,EACtC,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,GAAG,MAAM,EAAE,GACnC,OAAO,CAAC,gBAAgB,CAAC,CAgC3B"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "../index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
import { RegistrationDescription } from "../../models/registration.js";
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
export declare function createOrUpdateRegistrationDescription(context: NotificationHubsClientContext, registration: RegistrationDescription, operationName: "create" | "createOrUpdate" | "update", options: OperationOptions): Promise<RegistrationDescription>;
|
|
8
|
+
//# sourceMappingURL=_createOrUpdateRegistrationDescription.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_createOrUpdateRegistrationDescription.d.ts","sourceRoot":"","sources":["../../../../src/client/internal/_createOrUpdateRegistrationDescription.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAGvE;;GAEG;AACH,wBAAsB,qCAAqC,CACzD,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,uBAAuB,EACrC,aAAa,EAAE,QAAQ,GAAG,gBAAgB,GAAG,QAAQ,EACrD,OAAO,EAAE,gBAAgB,GACxB,OAAO,CAAC,uBAAuB,CAAC,CA4BlC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Notification } from "../../models/notification.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "../index.js";
|
|
3
|
+
import { NotificationHubsMessageResponse } from "../../models/response.js";
|
|
4
|
+
import { OperationOptions } from "@azure/core-client";
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export declare function scheduleNotificationPayload(context: NotificationHubsClientContext, scheduledTime: Date, tags: string[] | string | undefined, notification: Notification, options?: OperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
9
|
+
//# sourceMappingURL=_scheduleNotificationPayload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_scheduleNotificationPayload.d.ts","sourceRoot":"","sources":["../../../../src/client/internal/_scheduleNotificationPayload.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AAC5D,OAAO,EAAE,+BAA+B,EAAE,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;GAEG;AAEH,wBAAgB,2BAA2B,CACzC,OAAO,EAAE,6BAA6B,EACtC,aAAa,EAAE,IAAI,EACnB,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,GAAG,SAAS,EACnC,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,+BAA+B,CAAC,CAqC1C"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PushHandle } from "../../models/installation.js";
|
|
2
|
+
import { Notification } from "../../models/notification.js";
|
|
3
|
+
import { NotificationHubsClientContext } from "../index.js";
|
|
4
|
+
import { NotificationHubsMessageResponse } from "../../models/response.js";
|
|
5
|
+
import { SendOperationOptions } from "../../models/options.js";
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
export declare function sendNotificationPayload(context: NotificationHubsClientContext, notification: Notification, method: string, pushHandle?: PushHandle, tags?: string | string[], options?: SendOperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
10
|
+
//# sourceMappingURL=_sendNotificationPayload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_sendNotificationPayload.d.ts","sourceRoot":"","sources":["../../../../src/client/internal/_sendNotificationPayload.ts"],"names":[],"mappings":"AAGA,OAAO,EAAsB,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE9E,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AAC5D,OAAO,EAAE,+BAA+B,EAAE,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAG/D;;GAEG;AACH,wBAAgB,uBAAuB,CACrC,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,YAAY,EAC1B,MAAM,EAAE,MAAM,EACd,UAAU,CAAC,EAAE,UAAU,EACvB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,EACxB,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,+BAA+B,CAAC,CAqD1C"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NotificationHubJob } from "../models/notificationHubJob.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Gets all Notification Hub Jobs for this Notification Hub.
|
|
6
|
+
* @param context - The Notification Hubs client.xs
|
|
7
|
+
* @param options - The operation options.
|
|
8
|
+
* @returns An array of all Notification Hub Jobs for this Notification Hub.
|
|
9
|
+
*/
|
|
10
|
+
export declare function listNotificationHubJobs(context: NotificationHubsClientContext, options?: OperationOptions): Promise<NotificationHubJob[]>;
|
|
11
|
+
//# sourceMappingURL=listNotificationHubJobs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listNotificationHubJobs.d.ts","sourceRoot":"","sources":["../../../src/client/listNotificationHubJobs.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAItD;;;;;GAKG;AACH,wBAAgB,uBAAuB,CACrC,OAAO,EAAE,6BAA6B,EACtC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAiB/B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { PagedAsyncIterableIterator } from "@azure/core-paging";
|
|
3
|
+
import { RegistrationDescription } from "../models/registration.js";
|
|
4
|
+
import { RegistrationQueryOptions } from "../models/options.js";
|
|
5
|
+
/**
|
|
6
|
+
* Gets all registrations for the notification hub with the given query options.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param options - The options for querying the registrations such as $top and $filter.
|
|
9
|
+
* @returns A paged async iterable containing all of the registrations for the notification hub.
|
|
10
|
+
*/
|
|
11
|
+
export declare function listRegistrations(context: NotificationHubsClientContext, options?: RegistrationQueryOptions): PagedAsyncIterableIterator<RegistrationDescription>;
|
|
12
|
+
//# sourceMappingURL=listRegistrations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listRegistrations.d.ts","sourceRoot":"","sources":["../../../src/client/listRegistrations.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAKhE;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,6BAA6B,EACtC,OAAO,GAAE,wBAA6B,GACrC,0BAA0B,CAAC,uBAAuB,CAAC,CAwBrD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { PagedAsyncIterableIterator } from "@azure/core-paging";
|
|
3
|
+
import { RegistrationDescription } from "../models/registration.js";
|
|
4
|
+
import { RegistrationQueryLimitOptions } from "../models/options.js";
|
|
5
|
+
/**
|
|
6
|
+
* Lists all registrations with the matching tag.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param tag - The tag to query for matching registrations.
|
|
9
|
+
* @param options - The query options such as $top.
|
|
10
|
+
* @returns A paged async iterable containing the matching registrations for the notification hub.
|
|
11
|
+
*/
|
|
12
|
+
export declare function listRegistrationsByTag(context: NotificationHubsClientContext, tag: string, options?: RegistrationQueryLimitOptions): PagedAsyncIterableIterator<RegistrationDescription>;
|
|
13
|
+
//# sourceMappingURL=listRegistrationsByTag.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"listRegistrationsByTag.d.ts","sourceRoot":"","sources":["../../../src/client/listRegistrationsByTag.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,6BAA6B,EAAE,MAAM,sBAAsB,CAAC;AAKrE;;;;;;GAMG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,6BAA6B,EACtC,GAAG,EAAE,MAAM,EACX,OAAO,GAAE,6BAAkC,GAC1C,0BAA0B,CAAC,uBAAuB,CAAC,CAwBrD"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Notification } from "../models/notification.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsMessageResponse } from "../models/response.js";
|
|
4
|
+
import { OperationOptions } from "@azure/core-client";
|
|
5
|
+
/**
|
|
6
|
+
* Schedules a push notification to all devices registered on the Notification Hub.
|
|
7
|
+
* NOTE: This is only available in Standard SKU Azure Notification Hubs.
|
|
8
|
+
* @param context - The Notification Hubs client.
|
|
9
|
+
* @param scheduledTime - The Date to send the push notification.
|
|
10
|
+
* @param notification - The notification to send to the matching devices.
|
|
11
|
+
* @param options - Configuration options for the direct send operation which can contain custom headers
|
|
12
|
+
* which may include APNs specific such as apns-topic or for WNS, X-WNS-TYPE.
|
|
13
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
14
|
+
*/
|
|
15
|
+
export declare function scheduleBroadcastNotification(context: NotificationHubsClientContext, scheduledTime: Date, notification: Notification, options?: OperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
16
|
+
//# sourceMappingURL=scheduleBroadcastNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduleBroadcastNotification.d.ts","sourceRoot":"","sources":["../../../src/client/scheduleBroadcastNotification.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;;;;GASG;AACH,wBAAgB,6BAA6B,CAC3C,OAAO,EAAE,6BAA6B,EACtC,aAAa,EAAE,IAAI,EACnB,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,+BAA+B,CAAC,CAE1C"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Notification } from "../models/notification.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsMessageResponse } from "../models/response.js";
|
|
4
|
+
import { OperationOptions } from "@azure/core-client";
|
|
5
|
+
/**
|
|
6
|
+
* Schedules a push notification to devices that match the given tags or tag expression at the specified time.
|
|
7
|
+
* NOTE: This is only available in Standard SKU Azure Notification Hubs.
|
|
8
|
+
* @param context - The Notification Hubs client.
|
|
9
|
+
* @param scheduledTime - The Date to send the push notification.
|
|
10
|
+
* @param tags - The tags used to target the device for push notifications in either an array or tag expression.
|
|
11
|
+
* @param notification - The notification to send to the matching devices.
|
|
12
|
+
* @param options - Configuration options for the direct send operation which can contain custom headers
|
|
13
|
+
* which may include APNs specific such as apns-topic or for WNS, X-WNS-TYPE.
|
|
14
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
15
|
+
*/
|
|
16
|
+
export declare function scheduleNotification(context: NotificationHubsClientContext, scheduledTime: Date, tags: string[] | string, notification: Notification, options?: OperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
17
|
+
//# sourceMappingURL=scheduleNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scheduleNotification.d.ts","sourceRoot":"","sources":["../../../src/client/scheduleNotification.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;;;;;GAUG;AACH,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,6BAA6B,EACtC,aAAa,EAAE,IAAI,EACnB,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EACvB,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,+BAA+B,CAAC,CAE1C"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Notification } from "../models/notification.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsMessageResponse } from "../models/response.js";
|
|
4
|
+
import { SendOperationOptions } from "../models/options.js";
|
|
5
|
+
/**
|
|
6
|
+
* Sends push notifications to all devices on the Notification Hub.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param notification - The notification to send to all devices.
|
|
9
|
+
* @param options - Configuration options for the direct send operation which can contain custom headers
|
|
10
|
+
* which may include APNs specific such as apns-topic or for WNS, X-WNS-TYPE.
|
|
11
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
12
|
+
*/
|
|
13
|
+
export declare function sendBroadcastNotification(context: NotificationHubsClientContext, notification: Notification, options?: SendOperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
14
|
+
//# sourceMappingURL=sendBroadcastNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sendBroadcastNotification.d.ts","sourceRoot":"","sources":["../../../src/client/sendBroadcastNotification.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAG5D;;;;;;;GAOG;AACH,wBAAgB,yBAAyB,CACvC,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,+BAA+B,CAAC,CAS1C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Notification } from "../models/notification.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsMessageResponse } from "../models/response.js";
|
|
4
|
+
import { PushHandle } from "../models/installation.js";
|
|
5
|
+
import { SendOperationOptions } from "../models/options.js";
|
|
6
|
+
/**
|
|
7
|
+
* Sends a direct push notification to a device with the given push handle.
|
|
8
|
+
* @param context - The Notification Hubs client.
|
|
9
|
+
* @param pushHandle - The push handle which is the unique identifier for the device.
|
|
10
|
+
* @param notification - The notification to send to the device.
|
|
11
|
+
* @param options - Configuration options for the direct send operation which can contain custom headers
|
|
12
|
+
* which may include APNs specific such as apns-topic or for WNS, X-WNS-TYPE.
|
|
13
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
14
|
+
*/
|
|
15
|
+
export declare function sendDirectNotification(context: NotificationHubsClientContext, pushHandle: PushHandle, notification: Notification, options?: SendOperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
16
|
+
//# sourceMappingURL=sendDirectNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sendDirectNotification.d.ts","sourceRoot":"","sources":["../../../src/client/sendDirectNotification.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAG5D;;;;;;;;GAQG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,6BAA6B,EACtC,UAAU,EAAE,UAAU,EACtB,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,+BAA+B,CAAC,CAS1C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Notification } from "../models/notification.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsMessageResponse } from "../models/response.js";
|
|
4
|
+
import { SendOperationOptions } from "../models/options.js";
|
|
5
|
+
/**
|
|
6
|
+
* Sends push notifications to devices that match the given tags or tag expression.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param tags - The tags used to target the device for push notifications in either an array or tag expression.
|
|
9
|
+
* @param notification - The notification to send to the matching devices.
|
|
10
|
+
* @param options - Configuration options for the direct send operation which can contain custom headers
|
|
11
|
+
* which may include APNs specific such as apns-topic or for WNS, X-WNS-TYPE.
|
|
12
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
13
|
+
*/
|
|
14
|
+
export declare function sendNotification(context: NotificationHubsClientContext, tags: string[] | string, notification: Notification, options?: SendOperationOptions): Promise<NotificationHubsMessageResponse>;
|
|
15
|
+
//# sourceMappingURL=sendNotification.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sendNotification.d.ts","sourceRoot":"","sources":["../../../src/client/sendNotification.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,+BAA+B,EAAE,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAG5D;;;;;;;;GAQG;AACH,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,6BAA6B,EACtC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,EACvB,YAAY,EAAE,YAAY,EAC1B,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,+BAA+B,CAAC,CAS1C"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { NotificationHubJob } from "../models/notificationHubJob.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { OperationOptions } from "@azure/core-client";
|
|
4
|
+
/**
|
|
5
|
+
* Submits a Notification Hub Job.
|
|
6
|
+
* Note: this is available to Standard SKU namespace and above.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param job - The notification hub job to submit.
|
|
9
|
+
* @param options - The operation options.
|
|
10
|
+
* @returns The notification hub job details including job ID and status.
|
|
11
|
+
*/
|
|
12
|
+
export declare function submitNotificationHubJob(context: NotificationHubsClientContext, job: NotificationHubJob, options?: OperationOptions): Promise<NotificationHubJob>;
|
|
13
|
+
//# sourceMappingURL=submitNotificationHubJob.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"submitNotificationHubJob.d.ts","sourceRoot":"","sources":["../../../src/client/submitNotificationHubJob.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;;GAOG;AACH,wBAAgB,wBAAwB,CACtC,OAAO,EAAE,6BAA6B,EACtC,GAAG,EAAE,kBAAkB,EACvB,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,kBAAkB,CAAC,CAmB7B"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { JsonPatch } from "../models/installation.js";
|
|
2
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
3
|
+
import { NotificationHubsResponse } from "../models/response.js";
|
|
4
|
+
import { OperationOptions } from "@azure/core-client";
|
|
5
|
+
/**
|
|
6
|
+
* Updates an installation using the JSON-Patch standard in RFC6902.
|
|
7
|
+
* @param context - The Notification Hubs client.
|
|
8
|
+
* @param installationId - The ID of the installation to update.
|
|
9
|
+
* @param installationPatches - An array of patches following the JSON-Patch standard.
|
|
10
|
+
* @param options - Configuration options for the patch installation operation.
|
|
11
|
+
* @returns A NotificationHubResponse with the tracking ID, correlation ID and location.
|
|
12
|
+
*/
|
|
13
|
+
export declare function updateInstallation(context: NotificationHubsClientContext, installationId: string, installationPatches: JsonPatch[], options?: OperationOptions): Promise<NotificationHubsResponse>;
|
|
14
|
+
//# sourceMappingURL=updateInstallation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateInstallation.d.ts","sourceRoot":"","sources":["../../../src/client/updateInstallation.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAGtD;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,6BAA6B,EACtC,cAAc,EAAE,MAAM,EACtB,mBAAmB,EAAE,SAAS,EAAE,EAChC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,wBAAwB,CAAC,CAkBnC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationHubsClientContext } from "./index.js";
|
|
2
|
+
import { OperationOptions } from "@azure/core-client";
|
|
3
|
+
import { RegistrationDescription } from "../models/registration.js";
|
|
4
|
+
/**
|
|
5
|
+
* Updates an existing registration.
|
|
6
|
+
* @param context - The Notification Hubs client.
|
|
7
|
+
* @param registration - The registration to update.
|
|
8
|
+
* @param options - The operation options.
|
|
9
|
+
* @returns The updated registration description.
|
|
10
|
+
*/
|
|
11
|
+
export declare function updateRegistration(context: NotificationHubsClientContext, registration: RegistrationDescription, options?: OperationOptions): Promise<RegistrationDescription>;
|
|
12
|
+
//# sourceMappingURL=updateRegistration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateRegistration.d.ts","sourceRoot":"","sources":["../../../src/client/updateRegistration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAKpE;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAChC,OAAO,EAAE,6BAA6B,EACtC,YAAY,EAAE,uBAAuB,EACrC,OAAO,GAAE,gBAAqB,GAC7B,OAAO,CAAC,uBAAuB,CAAC,CAWlC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { NotificationHubsServiceClient } from "./notificationHubsClient.js";
|
|
2
|
+
export * from "./models/installation.js";
|
|
3
|
+
export * from "./models/notification.js";
|
|
4
|
+
export * from "./models/notificationBuilder.js";
|
|
5
|
+
export * from "./models/notificationDetails.js";
|
|
6
|
+
export * from "./models/notificationHubJob.js";
|
|
7
|
+
export * from "./models/options.js";
|
|
8
|
+
export * from "./models/registration.js";
|
|
9
|
+
export * from "./models/response.js";
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,6BAA6B,CAAC;AAC5E,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC"}
|