@azure/notification-hubs 1.0.4-alpha.20240213.1 → 1.1.0-alpha.20240214.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.
Files changed (28) hide show
  1. package/README.md +2 -2
  2. package/dist/index.cjs +102 -49
  3. package/dist/index.cjs.map +1 -1
  4. package/dist-esm/src/api/beginSubmitNotificationHubJob.js +26 -42
  5. package/dist-esm/src/api/beginSubmitNotificationHubJob.js.map +1 -1
  6. package/dist-esm/src/models/installation.js +8 -0
  7. package/dist-esm/src/models/installation.js.map +1 -1
  8. package/dist-esm/src/models/notification.js +9 -0
  9. package/dist-esm/src/models/notification.js.map +1 -1
  10. package/dist-esm/src/models/notificationBodyBuilder.js +8 -0
  11. package/dist-esm/src/models/notificationBodyBuilder.js.map +1 -1
  12. package/dist-esm/src/models/registration.js +16 -0
  13. package/dist-esm/src/models/registration.js.map +1 -1
  14. package/dist-esm/src/serializers/registrationSerializer.js +28 -2
  15. package/dist-esm/src/serializers/registrationSerializer.js.map +1 -1
  16. package/package.json +15 -16
  17. package/types/latest/notification-hubs.d.ts +485 -4
  18. package/types/src/api/beginSubmitNotificationHubJob.d.ts.map +1 -1
  19. package/types/src/models/installation.d.ts +16 -1
  20. package/types/src/models/installation.d.ts.map +1 -1
  21. package/types/src/models/notification.d.ts +29 -1
  22. package/types/src/models/notification.d.ts.map +1 -1
  23. package/types/src/models/notificationBodyBuilder.d.ts +357 -0
  24. package/types/src/models/notificationBodyBuilder.d.ts.map +1 -1
  25. package/types/src/models/registration.d.ts +60 -3
  26. package/types/src/models/registration.d.ts.map +1 -1
  27. package/types/src/serializers/registrationSerializer.d.ts +21 -1
  28. package/types/src/serializers/registrationSerializer.d.ts.map +1 -1
@@ -929,6 +929,34 @@ export declare function createFcmLegacyRegistrationDescription(description: GcmR
929
929
  */
930
930
  export declare function createFcmLegacyTemplateRegistrationDescription(description: GcmTemplateRegistrationDescriptionCommon): GcmTemplateRegistrationDescription;
931
931
 
932
+ /**
933
+ * Creates an Firebase V1 Cloud Messaging based installation.
934
+ * @param installation - A partial installation used to create the Firebase V1 Cloud Messaging installation.
935
+ * @returns The newly created Firebase V1 Cloud Messaging installation.
936
+ */
937
+ export declare function createFcmV1Installation(installation: DeviceTokenInstallation): FcmV1Installation;
938
+
939
+ /**
940
+ * Creates a notification to send to Firebase.
941
+ * @param notification - A partial message used to create a message for Firebase.
942
+ * @returns A newly created Firebase notification.
943
+ */
944
+ export declare function createFcmV1Notification(notification: FcmV1NotificationParams): FcmV1Notification;
945
+
946
+ /**
947
+ * Creates a Firebase V1 registration description.
948
+ * @param description - A partial FCM V1 registration description.
949
+ * @returns A created FCM V1 registration description.
950
+ */
951
+ export declare function createFcmV1RegistrationDescription(description: FcmV1RegistrationDescriptionCommon): FcmV1RegistrationDescription;
952
+
953
+ /**
954
+ * Creates a FCM V1 template registration description.
955
+ * @param description - A partial FCM V1 template registration description.
956
+ * @returns A created FCM V1 template registration description.
957
+ */
958
+ export declare function createFcmV1TemplateRegistrationDescription(description: FcmV1TemplateRegistrationDescriptionCommon): FcmV1TemplateRegistrationDescription;
959
+
932
960
  /**
933
961
  * Creates a FcmLegacyNotification from a native Firebase payload.
934
962
  * @param nativeMessage - The native message payload to send to Notification Hubs.
@@ -936,6 +964,13 @@ export declare function createFcmLegacyTemplateRegistrationDescription(descripti
936
964
  */
937
965
  export declare function createFirebaseLegacyNotificationBody(nativeMessage: FirebaseLegacyNativeMessage): string;
938
966
 
967
+ /**
968
+ * Creates a FcmV1Notification from a native Firebase payload.
969
+ * @param nativeMessage - The native message payload to send to Notification Hubs.
970
+ * @returns The JSON body to send to Notification Hubs.
971
+ */
972
+ export declare function createFirebaseV1NotificationBody(nativeMessage: FirebaseV1NativeMessage): string;
973
+
939
974
  /**
940
975
  * Creates a tag expression from a list of tags as a || expression.
941
976
  * @param tags - The tags to create the || expression
@@ -1105,6 +1140,76 @@ export declare interface FcmLegacyNotificationParams {
1105
1140
  headers?: Record<string, string | undefined>;
1106
1141
  }
1107
1142
 
1143
+ /**
1144
+ * Represents an Firebase V1 Cloud Messaging based installation.
1145
+ */
1146
+ export declare interface FcmV1Installation extends DeviceTokenInstallation {
1147
+ /**
1148
+ * The platform for the installation.
1149
+ */
1150
+ platform: "fcmv1";
1151
+ }
1152
+
1153
+ /**
1154
+ * Represents an Firebase V1 API notification that can be sent to a device.
1155
+ */
1156
+ export declare interface FcmV1Notification extends JsonNotification {
1157
+ /**
1158
+ * The platform for the push notification.
1159
+ */
1160
+ platform: "fcmv1";
1161
+ }
1162
+
1163
+ /**
1164
+ * Represents an Firebase Legacy notification that can be sent to a device.
1165
+ */
1166
+ export declare interface FcmV1NotificationParams {
1167
+ /**
1168
+ * The body for the push notification.
1169
+ */
1170
+ body: string | FirebaseV1NativeMessage;
1171
+ /**
1172
+ * The headers to include for the push notification.
1173
+ */
1174
+ headers?: Record<string, string | undefined>;
1175
+ }
1176
+
1177
+ /**
1178
+ * Represents Notification Hub registration description for Google Cloud Messaging.
1179
+ */
1180
+ export declare interface FcmV1RegistrationDescription extends FcmV1RegistrationDescriptionCommon {
1181
+ /**
1182
+ * The kind of the registration.
1183
+ */
1184
+ kind: "FcmV1";
1185
+ }
1186
+
1187
+ /**
1188
+ * Represents Notification Hub registration description for Google Cloud Messaging.
1189
+ */
1190
+ export declare interface FcmV1RegistrationDescriptionCommon extends RegistrationDescriptionCommon {
1191
+ /**
1192
+ * Registration id obtained from the Firebase Cloud Messaging service.
1193
+ */
1194
+ fcmV1RegistrationId: string;
1195
+ }
1196
+
1197
+ /**
1198
+ * Represents Notification Hub template registration description for Firebase V1 Cloud Messaging.
1199
+ */
1200
+ export declare interface FcmV1TemplateRegistrationDescription extends FcmV1TemplateRegistrationDescriptionCommon {
1201
+ /**
1202
+ * The kind of the registration.
1203
+ */
1204
+ kind: "FcmV1Template";
1205
+ }
1206
+
1207
+ /**
1208
+ * Represents Notification Hub template registration description for Firebase V1 Cloud Messaging.
1209
+ */
1210
+ export declare interface FcmV1TemplateRegistrationDescriptionCommon extends FcmV1RegistrationDescriptionCommon, TemplateRegistrationDescription {
1211
+ }
1212
+
1108
1213
  /**
1109
1214
  * Represents an Android native payload for the Firebase Legacy HTTP interface.
1110
1215
  */
@@ -1297,6 +1402,382 @@ export declare interface FirebaseLegacyWebNativePayload {
1297
1402
  click_action?: string;
1298
1403
  }
1299
1404
 
1405
+ /**
1406
+ * Android specific options for messages sent through FCM connection server.
1407
+ */
1408
+ export declare interface FirebaseV1AndroidConfig {
1409
+ /**
1410
+ * An identifier of a group of messages that can be collapsed, so that only the last message gets sent when delivery can be resumed.
1411
+ */
1412
+ collapse_key?: string;
1413
+ /**
1414
+ * Message priority. Can take "normal" and "high" values.
1415
+ */
1416
+ priority: "normal" | "high";
1417
+ /**
1418
+ * How long (in seconds) the message should be kept in FCM storage if the device is offline.
1419
+ */
1420
+ ttl?: string;
1421
+ /**
1422
+ * Package name of the application where the registration token must match in order to receive the message.
1423
+ */
1424
+ restricted_package_name?: string;
1425
+ /**
1426
+ * Custom key-value pairs of the message's payload.
1427
+ */
1428
+ data?: Record<string, any>;
1429
+ /**
1430
+ * Notification to send to android devices.
1431
+ */
1432
+ notification?: FirebaseV1AndroidNotification;
1433
+ /**
1434
+ * Options for features provided by the FCM SDK for Android.
1435
+ */
1436
+ fcm_options?: FirebaseV1AndroidFcmOptions;
1437
+ /**
1438
+ * If set to true, messages will be allowed to be delivered to the app while the device is in direct boot mode.
1439
+ */
1440
+ direct_boot_ok?: boolean;
1441
+ }
1442
+
1443
+ /**
1444
+ * Options for features provided by the FCM SDK for Android.
1445
+ */
1446
+ export declare interface FirebaseV1AndroidFcmOptions {
1447
+ /**
1448
+ * The label associated with the message's analytics data.
1449
+ */
1450
+ analytics_label?: string;
1451
+ }
1452
+
1453
+ /**
1454
+ * Notification to send to android devices.
1455
+ */
1456
+ export declare interface FirebaseV1AndroidNotification {
1457
+ /**
1458
+ * The notification's title.
1459
+ */
1460
+ title?: string;
1461
+ /**
1462
+ * The notification's body text.
1463
+ */
1464
+ body?: string;
1465
+ /**
1466
+ * The notification's icon.
1467
+ */
1468
+ icon?: string;
1469
+ /**
1470
+ * The notification's icon color, expressed in #rrggbb format.
1471
+ */
1472
+ color?: string;
1473
+ /**
1474
+ * The sound to play when the device receives the notification.
1475
+ */
1476
+ sound?: string;
1477
+ /**
1478
+ * Identifier used to replace existing notifications in the notification drawer.
1479
+ */
1480
+ tag?: string;
1481
+ /**
1482
+ * The action associated with a user click on the notification.
1483
+ */
1484
+ click_action?: string;
1485
+ /**
1486
+ * The key to the body string in the app's string resources to use to localize the body text to the user's current localization.
1487
+ */
1488
+ body_loc_key?: string;
1489
+ /**
1490
+ * Variable string values to be used in place of the format specifiers in body_loc_key to use to localize the body text to the user's current localization.
1491
+ */
1492
+ body_loc_args?: string[];
1493
+ /**
1494
+ * The key to the title string in the app's string resources to use to localize the title text to the user's current localization.
1495
+ */
1496
+ title_loc_key?: string;
1497
+ /**
1498
+ * Variable string values to be used in place of the format specifiers in title_loc_key to use to localize the title text to the user's current localization.
1499
+ */
1500
+ title_loc_args?: string[];
1501
+ /**
1502
+ * The notification's channel id (new in Android O).
1503
+ */
1504
+ channel_id?: string;
1505
+ /**
1506
+ * Sets the "ticker" text, which is sent to accessibility services.
1507
+ */
1508
+ ticker?: string;
1509
+ /**
1510
+ * When set to false or unset, the notification is automatically dismissed when the user clicks it in the panel.
1511
+ */
1512
+ sticky?: boolean;
1513
+ /**
1514
+ * Set the time that the event in the notification occurred.
1515
+ */
1516
+ event_time?: string;
1517
+ /**
1518
+ * Set whether or not this notification is relevant only to the current device.
1519
+ */
1520
+ local_only?: boolean;
1521
+ notification_priority?: "PRIORITY_UNSPECIFIED" | "PRIORITY_MIN" | "PRIORITY_LOW" | "PRIORITY_DEFAULT" | "PRIORITY_HIGH" | "PRIORITY_MAX";
1522
+ /**
1523
+ * If set to true, use the Android framework's default sound for the notification.
1524
+ */
1525
+ default_sound?: boolean;
1526
+ /**
1527
+ * If set to true, use the Android framework's default vibrate pattern for the notification.
1528
+ */
1529
+ default_vibrate_timings?: boolean;
1530
+ /**
1531
+ * If set to true, use the Android framework's default light settings for the notification.
1532
+ */
1533
+ default_light_settings?: boolean;
1534
+ /**
1535
+ * Set the vibration pattern to use.
1536
+ */
1537
+ vibrate_timings?: string[];
1538
+ /**
1539
+ * Set the Notification.visibility of the notification.
1540
+ */
1541
+ visibility?: "VISIBILITY_UNSPECIFIED" | "PRIVATE" | "PUBLIC" | "SECRET";
1542
+ /**
1543
+ * Sets the number of items this notification represents.
1544
+ */
1545
+ notification_count?: number;
1546
+ /**
1547
+ * Settings to control the notification's LED blinking rate and color if LED is available on the device.
1548
+ */
1549
+ light_settings?: {
1550
+ color: {
1551
+ red: number;
1552
+ green: number;
1553
+ blue: number;
1554
+ alpha: number;
1555
+ };
1556
+ light_on_duration: string;
1557
+ light_off_duration: string;
1558
+ };
1559
+ /**
1560
+ * Contains the URL of an image that is going to be displayed in a notification.
1561
+ */
1562
+ image?: string;
1563
+ }
1564
+
1565
+ /**
1566
+ * Apple Push Notification Service specific options.
1567
+ */
1568
+ export declare interface FirebaseV1ApnsConfig {
1569
+ /**
1570
+ * A collection of APNs headers.
1571
+ */
1572
+ headers?: Record<string, string>;
1573
+ /**
1574
+ * A collection of APNs headers.
1575
+ */
1576
+ payload?: AppleNativeMessage;
1577
+ /**
1578
+ * A collection of APNs headers.
1579
+ */
1580
+ fcm_options?: FirebaseV1ApnsFcmOptions;
1581
+ }
1582
+
1583
+ /**
1584
+ * Options for features provided by the FCM SDK for iOS.
1585
+ */
1586
+ export declare interface FirebaseV1ApnsFcmOptions {
1587
+ /**
1588
+ * Label associated with the message's analytics data.
1589
+ */
1590
+ analytics_label: string;
1591
+ /**
1592
+ * Contains the URL of an image that is going to be displayed in a notification.
1593
+ */
1594
+ image: string;
1595
+ }
1596
+
1597
+ export declare interface FirebaseV1FcmOptions {
1598
+ /**
1599
+ * Label associated with the message's analytics data.
1600
+ */
1601
+ analytics_label: string;
1602
+ }
1603
+
1604
+ /**
1605
+ * Represents the targets, options, and payload for HTTP JSON messages for the Firebase V1 interface.
1606
+ */
1607
+ export declare interface FirebaseV1NativeMessage {
1608
+ /**
1609
+ * Custom key-value pairs of the message's payload.
1610
+ */
1611
+ data?: Record<string, any>;
1612
+ /**
1613
+ * The predefined, user-visible key-value pairs of the notification payload.
1614
+ */
1615
+ notification?: FirebaseV1NativeNotification;
1616
+ /**
1617
+ * Android specific options for messages sent through FCM connection server.
1618
+ */
1619
+ android?: FirebaseV1AndroidConfig;
1620
+ /**
1621
+ * Webpush protocol options.
1622
+ */
1623
+ webpush?: FirebaseV1WebPushConfig;
1624
+ /**
1625
+ * APNs specific options.
1626
+ */
1627
+ apns?: FirebaseV1ApnsConfig;
1628
+ /**
1629
+ * FCM options.
1630
+ */
1631
+ fcm_options?: FirebaseV1FcmOptions;
1632
+ /**
1633
+ * Registration token to send a message to.
1634
+ */
1635
+ token?: string;
1636
+ /**
1637
+ * Topic name to send a message to, e.g. "weather".
1638
+ */
1639
+ topic?: string;
1640
+ /**
1641
+ * Condition to send a message to, e.g. "'foo' in topics && 'bar' in topics".
1642
+ */
1643
+ condition?: string;
1644
+ }
1645
+
1646
+ /**
1647
+ * Represents a native FCM V1 notification message payload.
1648
+ */
1649
+ export declare interface FirebaseV1NativeNotification {
1650
+ /**
1651
+ * The notification's title.
1652
+ */
1653
+ title?: string;
1654
+ /**
1655
+ * The notification's body text.
1656
+ */
1657
+ body?: string;
1658
+ /**
1659
+ * Contains the URL of an image that is going to be downloaded on the device and displayed in a notification.
1660
+ */
1661
+ image?: string;
1662
+ }
1663
+
1664
+ /**
1665
+ * Describes an Firebase Legacy Registration channel query.
1666
+ */
1667
+ export declare interface FirebaseV1RegistrationChannel {
1668
+ /**
1669
+ * The FCM V1 registration ID.
1670
+ */
1671
+ fcmV1RegistrationId: string;
1672
+ /**
1673
+ * The kind of the registration channel.
1674
+ */
1675
+ kind: "fcmv1";
1676
+ }
1677
+
1678
+ export declare interface FirebaseV1WebPushConfig {
1679
+ /**
1680
+ * A collection of WebPush protocol options.
1681
+ */
1682
+ headers?: Record<string, string>;
1683
+ /**
1684
+ * A collection of WebPush protocol options.
1685
+ */
1686
+ data?: Record<string, string>;
1687
+ /**
1688
+ * Web Notification options as a JSON object.
1689
+ */
1690
+ notification?: FirebaseV1WebPushNotification;
1691
+ /**
1692
+ * A collection of WebPush protocol options.
1693
+ */
1694
+ fcm_options?: FirebaseV1WebPushFcmOptions;
1695
+ }
1696
+
1697
+ /**
1698
+ * Options for features provided by the FCM SDK for Web.
1699
+ */
1700
+ export declare interface FirebaseV1WebPushFcmOptions {
1701
+ /**
1702
+ * The link to open when the user clicks on the notification.
1703
+ */
1704
+ link?: string;
1705
+ /**
1706
+ * Label associated with the message's analytics data.
1707
+ */
1708
+ analytics_label?: string;
1709
+ }
1710
+
1711
+ /**
1712
+ * Represents a Web Push notification payload.
1713
+ */
1714
+ export declare interface FirebaseV1WebPushNotification {
1715
+ /**
1716
+ * An array of actions to display in the notification.
1717
+ */
1718
+ actions?: {
1719
+ action: string;
1720
+ title: string;
1721
+ icon: string;
1722
+ }[];
1723
+ /**
1724
+ * Defines a title for the notification.
1725
+ */
1726
+ title?: string;
1727
+ /**
1728
+ * The body string of the notification
1729
+ */
1730
+ body?: string;
1731
+ /**
1732
+ * A string containing the URL of an icon to be displayed in the notification.
1733
+ */
1734
+ icon?: string;
1735
+ /**
1736
+ * A string containing the URL of an image to represent the notification when there is not enough space to display the notification itself such as for example, the Android Notification Bar.
1737
+ */
1738
+ badge?: string;
1739
+ /**
1740
+ * The notification's data.
1741
+ */
1742
+ data?: Record<string, any>;
1743
+ /**
1744
+ * The direction in which to display the notification.
1745
+ */
1746
+ dir?: "auto" | "ltr" | "rtl";
1747
+ /**
1748
+ * A string containing the URL of an image to be displayed in the notification.
1749
+ */
1750
+ image?: string;
1751
+ /**
1752
+ * The notification's language.
1753
+ */
1754
+ lang?: string;
1755
+ /**
1756
+ * A boolean value specifying whether the user should be notified after a new notification replaces an old one.
1757
+ */
1758
+ renotify?: boolean;
1759
+ /**
1760
+ * Indicates that a notification should remain active until the user clicks or dismisses it, rather than closing automatically.
1761
+ */
1762
+ requireInteraction?: boolean;
1763
+ /**
1764
+ * A boolean value specifying whether the notification is silent
1765
+ */
1766
+ silent?: boolean;
1767
+ /**
1768
+ * A string representing an identifying tag for the notification.
1769
+ */
1770
+ tag?: string;
1771
+ /**
1772
+ * A number representing the time at which a notification is created or applicable
1773
+ */
1774
+ timestamp?: number;
1775
+ /**
1776
+ * A vibration pattern for the device's vibration hardware to emit with the notification.
1777
+ */
1778
+ vibrate?: number[];
1779
+ }
1780
+
1300
1781
  /**
1301
1782
  * Represents Notification Hub registration description for Google Cloud Messaging.
1302
1783
  */
@@ -1336,7 +1817,7 @@ export declare interface GcmTemplateRegistrationDescriptionCommon extends GcmReg
1336
1817
  /**
1337
1818
  * Represents the types of installations available in Notification Hubs.
1338
1819
  */
1339
- export declare type Installation = AppleInstallation | AdmInstallation | BaiduInstallation | BrowserInstallation | FcmLegacyInstallation | XiaomiInstallation | WindowsInstallation;
1820
+ export declare type Installation = AppleInstallation | AdmInstallation | BaiduInstallation | BrowserInstallation | FcmLegacyInstallation | FcmV1Installation | XiaomiInstallation | WindowsInstallation;
1340
1821
 
1341
1822
  /**
1342
1823
  * Represents an installation for a device for Notification Hubs.
@@ -1941,12 +2422,12 @@ export declare type PushHandle = BrowserPushChannel | string;
1941
2422
  /**
1942
2423
  * Describes a Registration query.
1943
2424
  */
1944
- export declare type RegistrationChannel = AdmRegistrationChannel | AppleRegistrationChannel | BaiduRegistrationChannel | BrowserRegistrationChannel | FirebaseLegacyRegistrationChannel | XiaomiRegistrationChannel | WindowsRegistrationChannel;
2425
+ export declare type RegistrationChannel = AdmRegistrationChannel | AppleRegistrationChannel | BaiduRegistrationChannel | BrowserRegistrationChannel | FirebaseLegacyRegistrationChannel | FirebaseV1RegistrationChannel | XiaomiRegistrationChannel | WindowsRegistrationChannel;
1945
2426
 
1946
2427
  /**
1947
2428
  * Describes the types of registration descriptions.
1948
2429
  */
1949
- export declare type RegistrationDescription = AdmRegistrationDescription | AdmTemplateRegistrationDescription | AppleRegistrationDescription | AppleTemplateRegistrationDescription | BaiduRegistrationDescription | BaiduTemplateRegistrationDescription | BrowserRegistrationDescription | BrowserTemplateRegistrationDescription | GcmRegistrationDescription | GcmTemplateRegistrationDescription | MpnsRegistrationDescription | MpnsTemplateRegistrationDescription | XiaomiRegistrationDescription | XiaomiTemplateRegistrationDescription | WindowsRegistrationDescription | WindowsTemplateRegistrationDescription;
2430
+ export declare type RegistrationDescription = AdmRegistrationDescription | AdmTemplateRegistrationDescription | AppleRegistrationDescription | AppleTemplateRegistrationDescription | BaiduRegistrationDescription | BaiduTemplateRegistrationDescription | BrowserRegistrationDescription | BrowserTemplateRegistrationDescription | GcmRegistrationDescription | GcmTemplateRegistrationDescription | FcmV1RegistrationDescription | FcmV1TemplateRegistrationDescription | MpnsRegistrationDescription | MpnsTemplateRegistrationDescription | XiaomiRegistrationDescription | XiaomiTemplateRegistrationDescription | WindowsRegistrationDescription | WindowsTemplateRegistrationDescription;
1950
2431
 
1951
2432
  /**
1952
2433
  * Represents a registration description.
@@ -2033,7 +2514,7 @@ export declare interface RegistrationResult {
2033
2514
  /**
2034
2515
  * Represents the types of registration descriptions.
2035
2516
  */
2036
- export declare type RegistrationType = "Adm" | "AdmTemplate" | "Apple" | "AppleTemplate" | "Baidu" | "BaiduTemplate" | "Browser" | "BrowserTemplate" | "Gcm" | "GcmTemplate" | "Mpns" | "MpnsTemplate" | "Xiaomi" | "XiaomiTemplate" | "Windows" | "WindowsTemplate";
2517
+ export declare type RegistrationType = "Adm" | "AdmTemplate" | "Apple" | "AppleTemplate" | "Baidu" | "BaiduTemplate" | "Browser" | "BrowserTemplate" | "Gcm" | "GcmTemplate" | "FcmV1" | "FcmV1Template" | "Mpns" | "MpnsTemplate" | "Xiaomi" | "XiaomiTemplate" | "Windows" | "WindowsTemplate";
2037
2518
 
2038
2519
  /**
2039
2520
  * Options for sending notifications for both tag based send and broadcast scheduled send.
@@ -1 +1 @@
1
- {"version":3,"file":"beginSubmitNotificationHubJob.d.ts","sourceRoot":"","sources":["../../../src/api/beginSubmitNotificationHubJob.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAC/F,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAI9D;;;;;;GAMG;AACH,wBAAsB,6BAA6B,CACjD,OAAO,EAAE,6BAA6B,EACtC,kBAAkB,EAAE,kBAAkB,EACtC,sBAAsB,GAAE,sBAA2B,GAClD,OAAO,CAAC,wBAAwB,CAAC,CAsHnC"}
1
+ {"version":3,"file":"beginSubmitNotificationHubJob.d.ts","sourceRoot":"","sources":["../../../src/api/beginSubmitNotificationHubJob.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,wBAAwB,EAAE,MAAM,iCAAiC,CAAC;AAC/F,OAAO,EAAE,6BAA6B,EAAE,MAAM,YAAY,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAK9D;;;;;;GAMG;AACH,wBAAsB,6BAA6B,CACjD,OAAO,EAAE,6BAA6B,EACtC,kBAAkB,EAAE,kBAAkB,EACtC,sBAAsB,GAAE,sBAA2B,GAClD,OAAO,CAAC,wBAAwB,CAAC,CA2HnC"}
@@ -96,6 +96,21 @@ export interface FcmLegacyInstallation extends DeviceTokenInstallation {
96
96
  * @returns The newly created Baidu installation.
97
97
  */
98
98
  export declare function createFcmLegacyInstallation(installation: DeviceTokenInstallation): FcmLegacyInstallation;
99
+ /**
100
+ * Represents an Firebase V1 Cloud Messaging based installation.
101
+ */
102
+ export interface FcmV1Installation extends DeviceTokenInstallation {
103
+ /**
104
+ * The platform for the installation.
105
+ */
106
+ platform: "fcmv1";
107
+ }
108
+ /**
109
+ * Creates an Firebase V1 Cloud Messaging based installation.
110
+ * @param installation - A partial installation used to create the Firebase V1 Cloud Messaging installation.
111
+ * @returns The newly created Firebase V1 Cloud Messaging installation.
112
+ */
113
+ export declare function createFcmV1Installation(installation: DeviceTokenInstallation): FcmV1Installation;
99
114
  /**
100
115
  * Represents a Xiaomi based installation.
101
116
  */
@@ -170,7 +185,7 @@ export declare function createBrowserInstallation(installation: BrowserInstallat
170
185
  /**
171
186
  * Represents the types of installations available in Notification Hubs.
172
187
  */
173
- export type Installation = AppleInstallation | AdmInstallation | BaiduInstallation | BrowserInstallation | FcmLegacyInstallation | XiaomiInstallation | WindowsInstallation;
188
+ export type Installation = AppleInstallation | AdmInstallation | BaiduInstallation | BrowserInstallation | FcmLegacyInstallation | FcmV1Installation | XiaomiInstallation | WindowsInstallation;
174
189
  /**
175
190
  * Represents an installation template.
176
191
  */
@@ -1 +1 @@
1
- {"version":3,"file":"installation.d.ts","sourceRoot":"","sources":["../../../src/models/installation.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"installation.d.ts","sourceRoot":"","sources":["../../../src/models/installation.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import { AdmNativeMessage, AppleNativeMessage, FirebaseLegacyNativeMessage } from "./notificationBodyBuilder.js";
1
+ import { AdmNativeMessage, AppleNativeMessage, FirebaseLegacyNativeMessage, FirebaseV1NativeMessage } from "./notificationBodyBuilder.js";
2
2
  import { AppleHeaders, WindowsHeaders } from "./notificationHeaderBuilder.js";
3
3
  /**
4
4
  * Represents a notification that can be sent to a device.
@@ -136,6 +136,34 @@ export interface FcmLegacyNotificationParams {
136
136
  * @returns A newly created Firebase notification.
137
137
  */
138
138
  export declare function createFcmLegacyNotification(notification: FcmLegacyNotificationParams): FcmLegacyNotification;
139
+ /**
140
+ * Represents an Firebase V1 API notification that can be sent to a device.
141
+ */
142
+ export interface FcmV1Notification extends JsonNotification {
143
+ /**
144
+ * The platform for the push notification.
145
+ */
146
+ platform: "fcmv1";
147
+ }
148
+ /**
149
+ * Represents an Firebase Legacy notification that can be sent to a device.
150
+ */
151
+ export interface FcmV1NotificationParams {
152
+ /**
153
+ * The body for the push notification.
154
+ */
155
+ body: string | FirebaseV1NativeMessage;
156
+ /**
157
+ * The headers to include for the push notification.
158
+ */
159
+ headers?: Record<string, string | undefined>;
160
+ }
161
+ /**
162
+ * Creates a notification to send to Firebase.
163
+ * @param notification - A partial message used to create a message for Firebase.
164
+ * @returns A newly created Firebase notification.
165
+ */
166
+ export declare function createFcmV1Notification(notification: FcmV1NotificationParams): FcmV1Notification;
139
167
  /**
140
168
  * Represents a Xiaomi push notification.
141
169
  */
@@ -1 +1 @@
1
- {"version":3,"file":"notification.d.ts","sourceRoot":"","sources":["../../../src/models/notification.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"notification.d.ts","sourceRoot":"","sources":["../../../src/models/notification.ts"],"names":[],"mappings":"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"}