@azure/notification-hubs 1.2.0-alpha.20240326.2 → 1.2.1-alpha.20240328.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/dist/index.cjs CHANGED
@@ -12,7 +12,7 @@ var tslib = require('tslib');
12
12
 
13
13
  // Copyright (c) Microsoft Corporation.
14
14
  // Licensed under the MIT license.
15
- const SDK_VERSION = "1.2.0";
15
+ const SDK_VERSION = "1.2.1";
16
16
  const JSON_CONTENT_TYPE = "application/json;charset=utf-8";
17
17
  const XML_CONTENT_TYPE = "application/xml";
18
18
  const STREAM_CONTENT_TYPE = "application/octet-stream";
@@ -1068,7 +1068,7 @@ const registrationDescriptionSerializer = {
1068
1068
  * Serializes an existing Browser registration description to an object for serialization.
1069
1069
  */
1070
1070
  serializeBrowserRegistrationDescription(description) {
1071
- return Object.assign(Object.assign({}, serializeRegistrationDescription(description)), { Endpoint: description.endpoint, Auth: description.auth, P256DH: description.p256dh });
1071
+ return Object.assign(Object.assign({}, serializeRegistrationDescription(description)), { Endpoint: description.endpoint, P256DH: description.p256dh, Auth: description.auth });
1072
1072
  },
1073
1073
  /**
1074
1074
  * @internal