@ua/capacitor-airship 3.1.0 → 4.0.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/UaCapacitorAirship.podspec +3 -3
- package/android/build.gradle +6 -6
- package/android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt +1 -1
- package/android/src/main/java/com/airship/capacitor/AirshipPlugin.kt +277 -207
- package/dist/plugin.cjs.js +0 -2
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +0 -2
- package/dist/plugin.js.map +1 -1
- package/ios/Plugin/AirshipCapacitorAutopilot.swift +2 -4
- package/ios/Plugin/AirshipCapacitorVersion.swift +1 -1
- package/ios/Plugin/AirshipPlugin.swift +48 -33
- package/ios/Plugin/AirshipPluginLoader.swift +4 -1
- package/package.json +16 -16
package/dist/plugin.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.cjs.js","sources":["esm/AirshipActions.js","esm/AirshipAnalytics.js","esm/AttributeEditor.js","esm/EventType.js","esm/SubscriptionListEditor.js","esm/TagEditor.js","esm/TagGroupEditor.js","esm/AirshipChannel.js","esm/ScopedSubscriptionListEditor.js","esm/AirshipContact.js","esm/AirshipFeatureFlagManager.js","esm/AirshipInApp.js","esm/AirshipLocale.js","esm/AirshipMessageCenter.js","esm/AirshipPreferenceCenter.js","esm/AirshipPrivacyManager.js","esm/AirshipPush.js","esm/AirshipLiveActivityManager.js","esm/AirshipLiveUpdateManager.js","esm/AirshipRoot.js","esm/AirshipPlugin.js","esm/types.js","esm/index.js"],"sourcesContent":["/**\n * Airship actions.\n */\nexport class AirshipActions {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Runs an Airship action.\n *\n * @param name The name of the action.\n * @param value The action's value.\n * @return A promise that returns the action result if the action\n * successfully runs, or the Error if the action was unable to be run.\n */\n run(actionName, actionValue) {\n return this.plugin.perform('actions#run', [actionName, actionValue]);\n }\n}\n//# sourceMappingURL=AirshipActions.js.map","/**\n * Airship analytics.\n */\nexport class AirshipAnalytics {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Associates an identifier.\n *\n * @param key The key.\n * @param identifier The identifier. `null` to remove.\n * @returns A promise.\n */\n associateIdentifier(key, identifier) {\n return this.plugin.perform('analytics#associateIdentifier', [\n key,\n identifier,\n ]);\n }\n /**\n * Tracks a screen.\n * @param screen The screen. `null` to stop tracking.\n * @returns A promise.\n */\n trackScreen(screen) {\n return this.plugin.perform('analytics#trackScreen', screen);\n }\n /**\n * Adds a custom event.\n * @param event The custom event.\n * @return A promise that returns null if resolved, or an Error if the\n * custom event is rejected.\n */\n addCustomEvent(event) {\n return this.plugin.perform('analytics#addCustomEvent', event);\n }\n}\n//# sourceMappingURL=AirshipAnalytics.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Editor for attributes.\n */\nexport class AttributeEditor {\n /**\n * AttributeEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Adds an attribute.\n *\n * @param value The attribute value.\n * @param name The attribute name.\n * @return The attribute editor instance.\n */\n setAttribute(name, value) {\n let attributeValue;\n let attributeType;\n if (typeof value === 'boolean') {\n // No boolean attribute type. Convert value to string.\n attributeValue = value.toString();\n attributeType = 'string';\n }\n else {\n attributeValue = value;\n if (typeof value === 'string') {\n attributeType = 'string';\n }\n else if (typeof attributeValue === 'number') {\n attributeType = 'number';\n }\n else if (value instanceof Date) {\n // JavaScript's date type doesn't pass through the JS to native bridge.\n // Dates are instead serialized as milliseconds since epoch.\n attributeType = 'date';\n attributeValue = value.getTime();\n }\n else {\n throw 'Unsupported attribute type: ' + typeof attributeValue;\n }\n }\n const operation = {\n action: 'set',\n value: attributeValue,\n key: name,\n type: attributeType,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Removes an attribute.\n * @param name The name of the attribute to remove.\n * @return The attribute editor instance.\n */\n removeAttribute(name) {\n const operation = { action: 'remove', key: name };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies the attribute operations.\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=AttributeEditor.js.map","export var EventType;\n(function (EventType) {\n EventType[\"ChannelCreated\"] = \"channel_created\";\n EventType[\"NotificationResponse\"] = \"notification_response_received\";\n EventType[\"PushReceived\"] = \"push_received\";\n EventType[\"DeepLink\"] = \"deep_link_received\";\n EventType[\"MessageCenterUpdated\"] = \"message_center_updated\";\n EventType[\"PushNotificationStatusChangedStatus\"] = \"notification_status_changed\";\n EventType[\"DisplayMessageCenter\"] = \"display_message_center\";\n EventType[\"DisplayPreferenceCenter\"] = \"display_preference_center\";\n EventType[\"PushTokenReceived\"] = \"push_token_received\";\n EventType[\"IOSAuthorizedNotificationSettingsChanged\"] = \"ios_authorized_notification_settings_changed\";\n EventType[\"IOSLiveActivitiesUpdated\"] = \"ios_live_activities_updated\";\n})(EventType || (EventType = {}));\n//# sourceMappingURL=EventType.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Enum of internal subscription list update type.\n * @hidden\n */\nvar SubscriptionListOperationAction;\n(function (SubscriptionListOperationAction) {\n SubscriptionListOperationAction[\"subscribe\"] = \"subscribe\";\n SubscriptionListOperationAction[\"unsubscribe\"] = \"unsubscribe\";\n})(SubscriptionListOperationAction || (SubscriptionListOperationAction = {}));\n/**\n * Subscription list editor.\n */\nexport class SubscriptionListEditor {\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Subscribes to a list.\n *\n * @param subscriptionListId The subscription list identifier.\n * @returns The editor\n */\n subscribe(subscriptionListId) {\n const operation = {\n listId: subscriptionListId,\n action: SubscriptionListOperationAction.subscribe,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Unsubscribe from a list.\n *\n * @param subscriptionListId The subscription list identifier.\n * @returns The editor\n */\n unsubscribe(subscriptionListId) {\n const operation = {\n listId: subscriptionListId,\n action: SubscriptionListOperationAction.unsubscribe,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies subscription list changes.\n *\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=SubscriptionListEditor.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Editor for device tags.\n */\nexport class TagEditor {\n /**\n * TagEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Adds tags to a channel.\n *\n * @param tags Tags to add.\n * @return The tag editor instance.\n */\n addTags(tags) {\n const operation = { operationType: 'add', tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Removes tags from the channel.\n *\n * @param tags Tags to remove.\n * @return The tag editor instance.\n */\n removeTags(tags) {\n const operation = { operationType: 'remove', tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies the tag changes.\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=TagEditor.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Editor for tag groups.\n */\nexport class TagGroupEditor {\n /**\n * TagGroupEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Adds tags to a tag group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to add.\n * @return The tag group editor instance.\n */\n addTags(group, tags) {\n const operation = { operationType: 'add', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Removes tags from the tag group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to remove.\n * @return The tag group editor instance.\n */\n removeTags(group, tags) {\n const operation = { operationType: 'remove', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Overwrite the current set of tags on the Tag Group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to set.\n * @return The tag group editor instance.\n */\n setTags(group, tags) {\n const operation = { operationType: 'set', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies the tag changes.\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=TagGroupEditor.js.map","import { AttributeEditor } from './AttributeEditor';\nimport { EventType } from './EventType';\nimport { SubscriptionListEditor } from './SubscriptionListEditor';\nimport { TagEditor } from './TagEditor';\nimport { TagGroupEditor } from './TagGroupEditor';\n/**\n * Airship channel.\n */\nexport class AirshipChannel {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Gets the device tags.\n * @returns A promise with the result.\n */\n getTags() {\n return this.plugin.perform('channel#getTags');\n }\n /**\n * Gets the channel Id.\n *\n * @returns A promise with the result.\n */\n getChannelId() {\n return this.plugin.perform('channel#getChannelId');\n }\n /**\n * Gets a list of the channel's subscriptions.\n * @returns A promise with the result.\n */\n getSubscriptionLists() {\n return this.plugin.perform('channel#getSubscriptionLists');\n }\n /**\n * Edits tags.\n * @returns A tag group editor.\n */\n editTags() {\n return new TagEditor((operations) => {\n return this.plugin.perform('channel#editTags', operations);\n });\n }\n /**\n * Edits tag groups.\n * @returns A tag group editor.\n */\n editTagGroups() {\n return new TagGroupEditor((operations) => {\n return this.plugin.perform('channel#editTagGroups', operations);\n });\n }\n /**\n * Edits attributes.\n * @returns An attribute editor.\n */\n editAttributes() {\n return new AttributeEditor((operations) => {\n return this.plugin.perform('channel#editAttributes', operations);\n });\n }\n /**\n * Edits subscription lists.\n * @returns A subscription list editor.\n */\n editSubscriptionLists() {\n return new SubscriptionListEditor((operations) => {\n return this.plugin.perform('channel#editSubscriptionLists', operations);\n });\n }\n /**\n * Enables channel creation if channel creation has been delayed.\n * It is only necessary to call this when isChannelCreationDelayEnabled\n * has been set to `true` in the airship config.\n * Deprecated. Use the Private Manager to disable all features instead.\n */\n enableChannelCreation() {\n return this.plugin.perform('channel#enableChannelCreation');\n }\n /**\n * Adds a channel created listener\n */\n onChannelCreated(listener) {\n return this.plugin.addListener(EventType.ChannelCreated, listener);\n }\n}\n//# sourceMappingURL=AirshipChannel.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Enum of internal scoped subscription list update type.\n * @hidden\n */\nvar ScopedSubscriptionListOperationAction;\n(function (ScopedSubscriptionListOperationAction) {\n ScopedSubscriptionListOperationAction[\"subscribe\"] = \"subscribe\";\n ScopedSubscriptionListOperationAction[\"unsubscribe\"] = \"unsubscribe\";\n})(ScopedSubscriptionListOperationAction || (ScopedSubscriptionListOperationAction = {}));\n/**\n * Scoped subscription list editor.\n */\nexport class ScopedSubscriptionListEditor {\n /**\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Subscribes to a list in the given scope.\n *\n * @param subscriptionListId The subscription list identifier.\n * @param scope The subscription scope to subscribe.\n * @returns The editor.\n */\n subscribe(subscriptionListId, scope) {\n const operation = {\n listId: subscriptionListId,\n action: ScopedSubscriptionListOperationAction.subscribe,\n scope: scope,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Unsubscribe from a list.\n *\n * @param subscriptionListId The subscription list identifier.\n * @param scope The subscription scope to unsubscribe.\n * @returns The editor.\n */\n unsubscribe(subscriptionListId, scope) {\n const operation = {\n listId: subscriptionListId,\n action: ScopedSubscriptionListOperationAction.unsubscribe,\n scope: scope,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies subscription list changes.\n *\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=ScopedSubscriptionListEditor.js.map","import { AttributeEditor } from './AttributeEditor';\nimport { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';\nimport { TagGroupEditor } from './TagGroupEditor';\n/**\n * Airship contact.\n */\nexport class AirshipContact {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Identifies the contact with a named user Id.\n * @param namedUser The named user Id.\n * @returns A promise.\n */\n identify(namedUser) {\n return this.plugin.perform('contact#identify', namedUser);\n }\n /**\n * Resets the contact.\n * @returns A promise.\n */\n reset() {\n return this.plugin.perform('contact#reset');\n }\n /**\n * Gets the named user Id.\n * @returns A promise with the result.\n */\n getNamedUserId() {\n return this.plugin.perform('contact#getNamedUserId');\n }\n /**\n * Gets the contacts subscription lists.\n * @returns A promise with the result.\n */\n getSubscriptionLists() {\n return this.plugin.perform('contact#getSubscriptionLists');\n }\n /**\n * Edits tag groups.\n * @returns A tag group editor.\n */\n editTagGroups() {\n return new TagGroupEditor((operations) => {\n return this.plugin.perform('contact#editTagGroups', operations);\n });\n }\n /**\n * Edits attributes.\n * @returns An attribute editor.\n */\n editAttributes() {\n return new AttributeEditor((operations) => {\n return this.plugin.perform('contact#editAttributes', operations);\n });\n }\n /**\n * Edits subscription lists.\n * @returns A subscription list editor.\n */\n editSubscriptionLists() {\n return new ScopedSubscriptionListEditor((operations) => {\n return this.plugin.perform('contact#editSubscriptionLists', operations);\n });\n }\n}\n//# sourceMappingURL=AirshipContact.js.map","/**\n * Airship feature flag manager.\n */\nexport class AirshipFeatureFlagManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Retrieve a given flag's status and associated data by its name.\n * @param {string} flagName The flag name\n * @return {Promise<FeatureFlag>} A promise resolving to the feature flag\n * requested.\n * @throws {Error} when failed to fetch\n */\n flag(flagName) {\n return this.plugin.perform('featureFlagManager#flag', flagName);\n }\n /**\n * Tracks a feature flag interaction event.\n * @param {FeatureFlag} flag The flag\n * @return {Promise<Void>} A promise with an empty result.\n * @throws {Error} when failed to fetch\n */\n trackInteraction(flag) {\n return this.plugin.perform('featureFlagManager#trackInteraction', flag);\n }\n}\n//# sourceMappingURL=AirshipFeatureFlagManager.js.map","/**\n * Airship InApp Experiences.\n */\nexport class AirshipInApp {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Pauses messages.\n * @param paused `true` to pause, `false` to resume.\n * @returns A promise.\n */\n setPaused(paused) {\n return this.plugin.perform('inApp#setPaused', paused);\n }\n /**\n * Checks if messages are paused.\n * @returns A promise with the result.\n */\n isPaused() {\n return this.plugin.perform('inApp#isPaused');\n }\n /**\n * Sets the display interval for messages.\n * @param milliseconds Display interval\n * @returns A promise.\n */\n setDisplayInterval(milliseconds) {\n return this.plugin.perform('inApp#setDisplayInterval', milliseconds);\n }\n /**\n * Gets the display interval.\n * @returns A promise with the result.\n */\n getDisplayInterval() {\n return this.plugin.perform('inApp#getDisplayInterval');\n }\n}\n//# sourceMappingURL=AirshipInApp.js.map","/**\n * Manages locale used by Airship messaging.\n */\nexport class AirshipLocale {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Sets the locale override.\n * @param localeIdentifier The locale identifier.\n * @returns A promise.\n */\n setLocaleOverride(localeIdentifier) {\n return this.plugin.perform('locale#setLocaleOverride', localeIdentifier);\n }\n /**\n * Clears the locale override.\n * @returns A promise.\n */\n clearLocaleOverride() {\n return this.plugin.perform('locale#clearLocaleOverride');\n }\n /**\n * Gets the current locale.\n * @returns A promise with the result.\n */\n getLocale() {\n return this.plugin.perform('locale#getLocale');\n }\n}\n//# sourceMappingURL=AirshipLocale.js.map","import { EventType } from './EventType';\n/**\n * Airship Message Center\n */\nexport class AirshipMessageCenter {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Gets the unread count.\n * @returns A promise with the result.\n */\n getUnreadCount() {\n return this.plugin.perform('messageCenter#getUnreadCount');\n }\n /**\n * Gets the inbox messages.\n * @returns A promise with the result.\n */\n getMessages() {\n return this.plugin.perform('messageCenter#getMessages');\n }\n /**\n * Marks a message as read.\n * @param messageId The message Id.\n * @returns A promise. Will reject if the message is not\n * found or if takeOff is not called.\n */\n markMessageRead(messageId) {\n return this.plugin.perform('messageCenter#markMessageRead', messageId);\n }\n /**\n * Deletes a message.\n * @param messageId The message Id.\n * @returns A promise. Will reject if the message is not\n * found or if takeOff is not called.\n */\n deleteMessage(messageId) {\n return this.plugin.perform('messageCenter#deleteMessage', messageId);\n }\n /**\n * Dismisses the OOTB message center if displayed.\n * @returns A promise.\n */\n dismiss() {\n return this.plugin.perform('messageCenter#dismiss');\n }\n /**\n * Requests to display the Message Center.\n *\n * Will either emit an event to display the\n * Message Center if auto launch message center\n * is disabled, or display the OOTB message center.\n * @param messageId Optional message Id.\n * @returns A promise.\n */\n display(messageId) {\n return this.plugin.perform('messageCenter#display', messageId);\n }\n /**\n * Overlays the message view. Should be used to display the actual\n * message body in a custom Message Center.\n *\n * @param messageId The message Id.\n * @returns A promise.\n */\n showMessageView(messageId) {\n return this.plugin.perform('messageCenter#showMessageView', messageId);\n }\n /**\n * Overlays the message center regardless if auto launch Message Center is enabled or not.\n *\n * @param messageId Optional message Id.\n * @returns A promise.\n */\n showMessageCenter(messageId) {\n return this.plugin.perform('messageCenter#showMessageCenter', messageId);\n }\n /**\n * Refreshes the messages.\n * @returns A promise. Will reject if the list fails to refresh or if\n * takeOff is not called yet.\n */\n refreshMessages() {\n return this.plugin.perform('messageCenter#refreshMessages');\n }\n /**\n * Enables or disables showing the OOTB UI when requested to display by either\n * `display` or by a notification with a Message Center action.\n * @param autoLaunch true to show OOTB UI, false to emit events.\n */\n setAutoLaunchDefaultMessageCenter(autoLaunch) {\n return this.plugin.perform('messageCenter#setAutoLaunchDefaultMessageCenter', autoLaunch);\n }\n /**\n * Adds a display message center listener.\n */\n onDisplay(listener) {\n return this.plugin.addListener(EventType.DisplayMessageCenter, listener);\n }\n /**\n * Adds a message center list updated listener.\n */\n onUpdated(listener) {\n return this.plugin.addListener(EventType.MessageCenterUpdated, listener);\n }\n}\n//# sourceMappingURL=AirshipMessageCenter.js.map","import { EventType } from './EventType';\n/**\n * Airship Preference Center.\n */\nexport class AirshipPreferenceCenter {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Requests to display a preference center.\n *\n * Will either emit an event to display the\n * Preference Center if auto launch is disabled,\n * or display the OOTB UI.\n * @param preferenceCenterId The preference center Id.\n * @returns A promise.\n */\n display(preferenceCenterId) {\n return this.plugin.perform('preferenceCenter#display', preferenceCenterId);\n }\n /**\n * Gets the preference center config.\n * @param preferenceCenterId The preference center Id.\n * @returns A promise with the result.\n */\n getConfig(preferenceCenterId) {\n return this.plugin.perform('preferenceCenter#getConfig', preferenceCenterId);\n }\n /**\n * Enables or disables showing the OOTB UI when requested to display by either\n * `display` or by a notification with some other action.\n * @param preferenceCenterId The preference center Id.\n * @param autoLaunch true to show OOTB UI, false to emit events.\n * @returns A promise with the result.\n */\n setAutoLaunchDefaultPreferenceCenter(preferenceCenterId, autoLaunch) {\n return this.plugin.perform('preferenceCenter#getConfig', [\n preferenceCenterId,\n autoLaunch,\n ]);\n }\n /**\n * Adds a display message center listener.\n */\n onDisplay(listener) {\n return this.plugin.addListener(EventType.DisplayPreferenceCenter, listener);\n }\n}\n//# sourceMappingURL=AirshipPreferenceCenter.js.map","/**\n * Airship Privacy Manager.\n */\nexport class AirshipPrivacyManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Sets the current set of enabled features.\n * @param features The features to set.\n * @returns A promise.\n */\n setEnabledFeatures(features) {\n return this.plugin.perform('privacyManager#setEnabledFeatures', features);\n }\n /**\n * Gets the current enabled features.\n * @returns A promise with the result.\n */\n getEnabledFeatures() {\n return this.plugin.perform('privacyManager#getEnabledFeatures');\n }\n /**\n * Enables additional features.\n * @param features The features to enable.\n * @returns A promise.\n */\n enableFeatures(features) {\n return this.plugin.perform('privacyManager#enableFeatures', features);\n }\n /**\n * Disable features.\n * @param features The features to disable.\n * @returns A promise.\n */\n disableFeatures(features) {\n return this.plugin.perform('privacyManager#disableFeatures', features);\n }\n /**\n * Checks if the features are enabled or not.\n * @param features The features to check.\n * @returns A promise with the result.\n */\n isFeaturesEnabled(features) {\n return this.plugin.perform('privacyManager#isFeaturesEnabled', features);\n }\n}\n//# sourceMappingURL=AirshipPrivacyManager.js.map","import { EventType } from './EventType';\n/**\n * Airship Push.\n */\nexport class AirshipPush {\n constructor(plugin) {\n this.plugin = plugin;\n this.iOS = new AirshipPushIOS(plugin);\n this.android = new AirshipPushAndroid(plugin);\n }\n /**\n * Enables/disables notifications on Airship.\n *\n * When enabled, it will cause the user to be prompted for\n * the permission on platforms that support it.\n * To get the result of the prompt, use `enableUserNotifications`.\n * @param enabled true to enable, false to disable\n * @returns A promise.\n */\n setUserNotificationsEnabled(enabled) {\n return this.plugin.perform('push#setUserNotificationsEnabled', enabled);\n }\n /**\n * Checks if user notifications are enabled or not on Airship.\n * @returns A promise with the result.\n */\n isUserNotificationsEnabled() {\n return this.plugin.perform('push#isUserNotificationsEnabled');\n }\n /**\n * Enables user notifications.\n * @param options Optional options.\n * @returns A promise with the permission result.\n */\n enableUserNotifications(options) {\n return this.plugin.perform('push#enableUserNotifications', options);\n }\n /**\n * Gets the notification status.\n * @returns A promise with the result.\n */\n getNotificationStatus() {\n return this.plugin.perform('push#getNotificationStatus');\n }\n /**\n * Gets the registration token if generated.\n * Use the event EventType.PushTokenReceived to be notified\n * when available.\n * @returns A promise with the result.\n */\n getPushToken() {\n return this.plugin.perform('push#getPushToken');\n }\n /**\n * Gets the list of active notifications.\n *\n * On Android, this list only includes notifications\n * sent through Airship.\n * @returns A promise with the result.\n */\n getActiveNotifications() {\n return this.plugin.perform('push#getActiveNotifications');\n }\n /**\n * Clears all notifications for the app.\n * @returns A promise with the result.\n */\n clearNotifications() {\n return this.plugin.perform('push#clearNotifications');\n }\n /**\n * Clears a specific notification.\n *\n * On Android, you can use this method to clear\n * notifications outside of Airship, The identifier is in\n * the format of <tag>:<id>.\n * @param identifier The identifier.\n * @returns A promise with the result.\n */\n clearNotification(identifier) {\n return this.plugin.perform('push#clearNotification', identifier);\n }\n /**\n * Adds a notification response event listener.\n */\n onNotificationResponse(listener) {\n return this.plugin.addListener(EventType.NotificationResponse, listener);\n }\n /**\n * Adds a push received event listener.\n */\n onPushReceived(listener) {\n return this.plugin.addListener(EventType.PushReceived, listener);\n }\n /**\n * Adds a notification status changed event listener.\n */\n onNotificationStatusChanged(listener) {\n return this.plugin.addListener(EventType.PushNotificationStatusChangedStatus, listener);\n }\n /**\n * Adds a notification status changed event listener.\n */\n onPushTokenReceived(listener) {\n return this.plugin.addListener(EventType.PushTokenReceived, listener);\n }\n}\n/**\n * iOS Push.\n */\nexport class AirshipPushIOS {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Sets the foreground presentation options.\n * @param options The foreground options.\n * @returns A promise.\n */\n setForegroundPresentationOptions(options) {\n return this.plugin.perform('push#ios#setForegroundPresentationOptions', options);\n }\n /**\n * Sets the notification options.\n * @param options The notification options.\n * @returns A promise.\n */\n setNotificationOptions(options) {\n return this.plugin.perform('push#ios#setNotificationOptions', options);\n }\n /**\n * Checks if autobadge is enabled.\n * @returns A promise with the result.\n */\n isAutobadgeEnabled() {\n return this.plugin.perform('push#ios#isAutobadgeEnabled');\n }\n /**\n * Enables/disables autobadge.\n * @param enabled true to enable, false to disable.\n * @returns A promise.\n */\n setAutobadgeEnabled(enabled) {\n return this.plugin.perform('push#ios#setAutobadgeEnabled', enabled);\n }\n /**\n * Set the badge number.\n * @param badge The badge number.\n * @returns A promise.\n */\n setBadgeNumber(badge) {\n return this.plugin.perform('push#ios#setBadgeNumber', badge);\n }\n /**\n * Gets the badge number.\n * @returns A promise with the result.\n */\n getBadgeNumber() {\n return this.plugin.perform('push#ios#getBadgeNumber');\n }\n /**\n * Enables/disables quiet time.\n *\n * @param enabled true to enable, false to disable\n * @returns A promise with the result.\n */\n setQuietTimeEnabled(enabled) {\n return this.plugin.perform('push#ios#setQuietTimeEnabled', enabled);\n }\n /**\n * Checks if quiet time is enabled or not.\n * @returns A promise with the result.\n */\n isQuietTimeEnabled() {\n return this.plugin.perform('push#ios#isQuietTimeEnabled');\n }\n /**\n * Sets quiet time.\n *\n * @param quietTime The quiet time.\n * @returns A promise with the result.\n */\n setQuietTime(quietTime) {\n return this.plugin.perform('push#ios#setQuietTime', quietTime);\n }\n /**\n * Gets the quiet time settings.\n *\n * @returns A promise with the result.\n */\n getQuietTime() {\n return this.plugin.perform('push#ios#getQuietTime');\n }\n /**\n * Adds a authorized settings changed event listener.\n */\n onAuthorizedSettingsChanged(listener) {\n return this.plugin.addListener(EventType.IOSAuthorizedNotificationSettingsChanged, listener);\n }\n}\n/**\n * Android Push.\n */\nexport class AirshipPushAndroid {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Checks if a notification category/channel is enabled.\n * @param channel The channel name.\n * @returns A promise with the result.\n */\n isNotificationChannelEnabled(channel) {\n return this.plugin.perform('push#android#isNotificationChannelEnabled', channel);\n }\n /**\n * Sets the notification config.\n * @param config The notification config.\n * @returns A promise with the result.\n */\n setNotificationConfig(config) {\n return this.plugin.perform('push#android#setNotificationConfig', config);\n }\n /**\n * Enables/disables showing notifications in the foreground.\n * @param enabled true to enable, false to disable.\n * @returns A promise with the result.\n */\n setForegroundNotificationsEnabled(enabled) {\n return this.plugin.perform('push#android#setForegroundNotificationsEnabled', enabled);\n }\n}\n//# sourceMappingURL=AirshipPush.js.map","import { EventType } from './EventType';\n/**\n * Live Activity manager.\n */\nexport class AirshipLiveActivityManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Lists any Live Activities for the request.\n * @param request The request options.\n * @returns A promise with the result.\n */\n list(request) {\n return this.plugin.perform('liveActivityManager#list', request);\n }\n /**\n * Lists all Live Activities.\n * @param request The request options.\n * @returns A promise with the result.\n */\n listAll() {\n return this.plugin.perform('liveActivityManager#listAll');\n }\n /**\n * Starts a Live Activity.\n * @param request The request options.\n * @returns A promise with the result.\n */\n start(request) {\n return this.plugin.perform('liveActivityManager#start', request);\n }\n /**\n * Updates a Live Activity.\n * @param request The request options.\n * @returns A promise with the result.\n */\n update(request) {\n return this.plugin.perform('liveActivityManager#update', request);\n }\n /**\n * Ends a Live Activity.\n * @param request The request options.\n * @returns A promise with the result.\n */\n end(request) {\n return this.plugin.perform('liveActivityManager#end', request);\n }\n /**\n * Adds a Live Activity listener.\n */\n onLiveActivityUpdates(listener) {\n return this.plugin.addListener(EventType.IOSLiveActivitiesUpdated, listener);\n }\n}\n//# sourceMappingURL=AirshipLiveActivityManager.js.map","/**\n * Live Update manager.\n */\nexport class AirshipLiveUpdateManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Lists any Live Updates for the request.\n * @param request The request options.\n * @returns A promise with the result.\n */\n list(request) {\n return this.plugin.perform('liveUpdateManager#list', request);\n }\n /**\n * Lists all Live Updates.\n * @returns A promise with the result.\n */\n listAll() {\n return this.plugin.perform('liveUpdateManager#listAll');\n }\n /**\n * Starts a Live Update.\n * @param request The request options.\n * @returns A promise with the result.\n */\n start(request) {\n return this.plugin.perform('liveUpdateManager#start', request);\n }\n /**\n * Updates a Live Update.\n * @param request The request options.\n * @returns A promise with the result.\n */\n update(request) {\n return this.plugin.perform('liveUpdateManager#update', request);\n }\n /**\n * Ends a Live Update.\n * @param request The request options.\n * @returns A promise with the result.\n */\n end(request) {\n return this.plugin.perform('liveUpdateManager#end', request);\n }\n /**\n * Clears all Live Updates.\n * @returns A promise with the result.\n */\n clearAll() {\n return this.plugin.perform('liveUpdateManager#clearAll');\n }\n}\n//# sourceMappingURL=AirshipLiveUpdateManager.js.map","import { AirshipActions } from './AirshipActions';\nimport { AirshipAnalytics } from './AirshipAnalytics';\nimport { AirshipChannel } from './AirshipChannel';\nimport { AirshipContact } from './AirshipContact';\nimport { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';\nimport { AirshipInApp } from './AirshipInApp';\nimport { AirshipLocale } from './AirshipLocale';\nimport { AirshipMessageCenter } from './AirshipMessageCenter';\nimport { AirshipPreferenceCenter } from './AirshipPreferenceCenter';\nimport { AirshipPrivacyManager } from './AirshipPrivacyManager';\nimport { AirshipPush } from './AirshipPush';\nimport { EventType } from './EventType';\nimport { AirshipLiveActivityManager } from './AirshipLiveActivityManager';\nimport { AirshipLiveUpdateManager } from './AirshipLiveUpdateManager';\n/**\n * Airship\n */\nexport class AirshipRoot {\n constructor(plugin) {\n this.plugin = plugin;\n this.actions = new AirshipActions(plugin);\n this.analytics = new AirshipAnalytics(plugin);\n this.channel = new AirshipChannel(plugin);\n this.contact = new AirshipContact(plugin);\n this.inApp = new AirshipInApp(plugin);\n this.locale = new AirshipLocale(plugin);\n this.messageCenter = new AirshipMessageCenter(plugin);\n this.preferenceCenter = new AirshipPreferenceCenter(plugin);\n this.privacyManager = new AirshipPrivacyManager(plugin);\n this.push = new AirshipPush(plugin);\n this.featureFlagManager = new AirshipFeatureFlagManager(plugin);\n this.iOS = new AirshipRootIOS(plugin);\n this.android = new AirshipRootAndroid(plugin);\n }\n /**\n * Calls takeOff. If Airship is already configured for\n * the app session, the new config will be applied on the next\n * app init.\n * @param config The config.\n * @returns A promise with the result. `true` if airship is ready.\n */\n takeOff(config) {\n return this.plugin.perform('takeOff', config);\n }\n /**\n * Checks if Airship is ready.\n * @returns A promise with the result.\n */\n isFlying() {\n return this.plugin.perform('isFlying');\n }\n /**\n * Adds a deep link listener.\n */\n onDeepLink(listener) {\n return this.plugin.addListener(EventType.DeepLink, listener);\n }\n}\nexport class AirshipRootIOS {\n constructor(plugin) {\n this.liveActivityManager = new AirshipLiveActivityManager(plugin);\n }\n}\nexport class AirshipRootAndroid {\n constructor(plugin) {\n this.liveUpdateManager = new AirshipLiveUpdateManager(plugin);\n }\n}\n//# sourceMappingURL=AirshipRoot.js.map","/// <reference types=\"@capacitor/cli\" />\nexport class AirshipPluginWrapper {\n constructor(plugin) {\n this.plugin = plugin;\n }\n perform(method, value) {\n return this.plugin.perform({ method: method, value: value }).then(value => {\n return value.value;\n });\n }\n addListener(eventType, listener) {\n return this.plugin.addListener(eventType, listener);\n }\n}\n//# sourceMappingURL=AirshipPlugin.js.map","/**\n * Enum of permission status.\n */\nexport var PermissionStatus;\n(function (PermissionStatus) {\n /**\n * Permission is granted.\n */\n PermissionStatus[\"Granted\"] = \"granted\";\n /**\n * Permission is denied.\n */\n PermissionStatus[\"Denied\"] = \"denied\";\n /**\n * Permission has not yet been requested.\n */\n PermissionStatus[\"NotDetermined\"] = \"not_determined\";\n})(PermissionStatus || (PermissionStatus = {}));\n/**\n * Fallback when prompting for permission and the permission is\n * already denied on iOS or is denied silently on Android.\n */\nexport var PromptPermissionFallback;\n(function (PromptPermissionFallback) {\n /**\n * Take the user to the system settings to enable the permission.\n */\n PromptPermissionFallback[\"SystemSettings\"] = \"systemSettings\";\n})(PromptPermissionFallback || (PromptPermissionFallback = {}));\n/**\n * iOS options\n */\nexport var iOS;\n(function (iOS) {\n /**\n * Enum of notification options. iOS only.\n */\n let NotificationOption;\n (function (NotificationOption) {\n /**\n * Alerts.\n */\n NotificationOption[\"Alert\"] = \"alert\";\n /**\n * Sounds.\n */\n NotificationOption[\"Sound\"] = \"sound\";\n /**\n * Badges.\n */\n NotificationOption[\"Badge\"] = \"badge\";\n /**\n * Car play.\n */\n NotificationOption[\"CarPlay\"] = \"car_play\";\n /**\n * Critical Alert.\n */\n NotificationOption[\"CriticalAlert\"] = \"critical_alert\";\n /**\n * Provides app notification settings.\n */\n NotificationOption[\"ProvidesAppNotificationSettings\"] = \"provides_app_notification_settings\";\n /**\n * Provisional.\n */\n NotificationOption[\"Provisional\"] = \"provisional\";\n })(NotificationOption = iOS.NotificationOption || (iOS.NotificationOption = {}));\n /**\n * Enum of foreground notification options.\n */\n let ForegroundPresentationOption;\n (function (ForegroundPresentationOption) {\n /**\n * Play the sound associated with the notification.\n */\n ForegroundPresentationOption[\"Sound\"] = \"sound\";\n /**\n * Apply the notification's badge value to the app’s icon.\n */\n ForegroundPresentationOption[\"Badge\"] = \"badge\";\n /**\n * Show the notification in Notification Center. On iOS 13 an older,\n * this will also show the notification as a banner.\n */\n ForegroundPresentationOption[\"List\"] = \"list\";\n /**\n * Present the notification as a banner. On iOS 13 an older,\n * this will also show the notification in the Notification Center.\n */\n ForegroundPresentationOption[\"Banner\"] = \"banner\";\n })(ForegroundPresentationOption = iOS.ForegroundPresentationOption || (iOS.ForegroundPresentationOption = {}));\n /**\n * Enum of authorized notification options.\n */\n let AuthorizedNotificationSetting;\n (function (AuthorizedNotificationSetting) {\n /**\n * Alerts.\n */\n AuthorizedNotificationSetting[\"Alert\"] = \"alert\";\n /**\n * Sounds.\n */\n AuthorizedNotificationSetting[\"Sound\"] = \"sound\";\n /**\n * Badges.\n */\n AuthorizedNotificationSetting[\"Badge\"] = \"badge\";\n /**\n * CarPlay.\n */\n AuthorizedNotificationSetting[\"CarPlay\"] = \"car_play\";\n /**\n * Lock screen.\n */\n AuthorizedNotificationSetting[\"LockScreen\"] = \"lock_screen\";\n /**\n * Notification center.\n */\n AuthorizedNotificationSetting[\"NotificationCenter\"] = \"notification_center\";\n /**\n * Critical alert.\n */\n AuthorizedNotificationSetting[\"CriticalAlert\"] = \"critical_alert\";\n /**\n * Announcement.\n */\n AuthorizedNotificationSetting[\"Announcement\"] = \"announcement\";\n /**\n * Scheduled delivery.\n */\n AuthorizedNotificationSetting[\"ScheduledDelivery\"] = \"scheduled_delivery\";\n /**\n * Time sensitive.\n */\n AuthorizedNotificationSetting[\"TimeSensitive\"] = \"time_sensitive\";\n })(AuthorizedNotificationSetting = iOS.AuthorizedNotificationSetting || (iOS.AuthorizedNotificationSetting = {}));\n /**\n * Enum of authorized status.\n */\n let AuthorizedNotificationStatus;\n (function (AuthorizedNotificationStatus) {\n /**\n * Not determined.\n */\n AuthorizedNotificationStatus[\"NotDetermined\"] = \"not_determined\";\n /**\n * Denied.\n */\n AuthorizedNotificationStatus[\"Denied\"] = \"denied\";\n /**\n * Authorized.\n */\n AuthorizedNotificationStatus[\"Authorized\"] = \"authorized\";\n /**\n * Provisional.\n */\n AuthorizedNotificationStatus[\"Provisional\"] = \"provisional\";\n /**\n * Ephemeral.\n */\n AuthorizedNotificationStatus[\"Ephemeral\"] = \"ephemeral\";\n })(AuthorizedNotificationStatus = iOS.AuthorizedNotificationStatus || (iOS.AuthorizedNotificationStatus = {}));\n})(iOS || (iOS = {}));\n/**\n * Enum of authorized Features.\n */\nexport var Feature;\n(function (Feature) {\n Feature[\"InAppAutomation\"] = \"in_app_automation\";\n Feature[\"MessageCenter\"] = \"message_center\";\n Feature[\"Push\"] = \"push\";\n // No longer used\n Feature[\"Chat\"] = \"chat\";\n Feature[\"Analytics\"] = \"analytics\";\n Feature[\"TagsAndAttributes\"] = \"tags_and_attributes\";\n Feature[\"Contacts\"] = \"contacts\";\n // No longer used\n Feature[\"Location\"] = \"location\";\n})(Feature || (Feature = {}));\n/**\n * All available features.\n */\nexport const FEATURES_ALL = Object.values(Feature);\n/**\n * Subscription Scope types.\n */\nexport var SubscriptionScope;\n(function (SubscriptionScope) {\n SubscriptionScope[\"App\"] = \"app\";\n SubscriptionScope[\"Web\"] = \"web\";\n SubscriptionScope[\"Sms\"] = \"sms\";\n SubscriptionScope[\"Email\"] = \"email\";\n})(SubscriptionScope || (SubscriptionScope = {}));\n//# sourceMappingURL=types.js.map","import { registerPlugin } from '@capacitor/core';\nimport { AirshipRoot } from './AirshipRoot';\nimport { AirshipPluginWrapper } from './AirshipPlugin';\nexport { AirshipRoot } from './AirshipRoot';\nexport { AirshipActions } from './AirshipActions';\nexport { AirshipAnalytics } from './AirshipAnalytics';\nexport { AirshipChannel } from './AirshipChannel';\nexport { AirshipContact } from './AirshipContact';\nexport { AirshipInApp } from './AirshipInApp';\nexport { AirshipLocale } from './AirshipLocale';\nexport { AirshipMessageCenter } from './AirshipMessageCenter';\nexport { AirshipPreferenceCenter } from './AirshipPreferenceCenter';\nexport { AirshipPrivacyManager } from './AirshipPrivacyManager';\nexport { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';\nexport { AirshipLiveActivityManager } from './AirshipLiveActivityManager';\nexport { AirshipLiveUpdateManager } from './AirshipLiveUpdateManager';\nexport { AirshipPush, AirshipPushAndroid, AirshipPushIOS } from './AirshipPush';\nexport { SubscriptionListEditor } from './SubscriptionListEditor';\nexport { TagGroupEditor } from './TagGroupEditor';\nexport { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';\nexport { AttributeEditor } from './AttributeEditor';\nexport * from './types';\nconst plugin = registerPlugin('Airship', {});\nconst sharedAirship = new AirshipRoot(new AirshipPluginWrapper(plugin));\nconst Airship = sharedAirship;\nexport { Airship };\n//# sourceMappingURL=index.js.map"],"names":["PermissionStatus","PromptPermissionFallback","iOS","Feature","SubscriptionScope","registerPlugin"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"plugin.cjs.js","sources":["esm/AirshipActions.js","esm/AirshipAnalytics.js","esm/AttributeEditor.js","esm/EventType.js","esm/SubscriptionListEditor.js","esm/TagEditor.js","esm/TagGroupEditor.js","esm/AirshipChannel.js","esm/ScopedSubscriptionListEditor.js","esm/AirshipContact.js","esm/AirshipFeatureFlagManager.js","esm/AirshipInApp.js","esm/AirshipLocale.js","esm/AirshipMessageCenter.js","esm/AirshipPreferenceCenter.js","esm/AirshipPrivacyManager.js","esm/AirshipPush.js","esm/AirshipLiveActivityManager.js","esm/AirshipLiveUpdateManager.js","esm/AirshipRoot.js","esm/AirshipPlugin.js","esm/types.js","esm/index.js"],"sourcesContent":["/**\n * Airship actions.\n */\nexport class AirshipActions {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Runs an Airship action.\n *\n * @param name The name of the action.\n * @param value The action's value.\n * @return A promise that returns the action result if the action\n * successfully runs, or the Error if the action was unable to be run.\n */\n run(actionName, actionValue) {\n return this.plugin.perform('actions#run', [actionName, actionValue]);\n }\n}\n//# sourceMappingURL=AirshipActions.js.map","/**\n * Airship analytics.\n */\nexport class AirshipAnalytics {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Associates an identifier.\n *\n * @param key The key.\n * @param identifier The identifier. `null` to remove.\n * @returns A promise.\n */\n associateIdentifier(key, identifier) {\n return this.plugin.perform('analytics#associateIdentifier', [\n key,\n identifier,\n ]);\n }\n /**\n * Tracks a screen.\n * @param screen The screen. `null` to stop tracking.\n * @returns A promise.\n */\n trackScreen(screen) {\n return this.plugin.perform('analytics#trackScreen', screen);\n }\n /**\n * Adds a custom event.\n * @param event The custom event.\n * @return A promise that returns null if resolved, or an Error if the\n * custom event is rejected.\n */\n addCustomEvent(event) {\n return this.plugin.perform('analytics#addCustomEvent', event);\n }\n}\n//# sourceMappingURL=AirshipAnalytics.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Editor for attributes.\n */\nexport class AttributeEditor {\n /**\n * AttributeEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Adds an attribute.\n *\n * @param value The attribute value.\n * @param name The attribute name.\n * @return The attribute editor instance.\n */\n setAttribute(name, value) {\n let attributeValue;\n let attributeType;\n if (typeof value === 'boolean') {\n // No boolean attribute type. Convert value to string.\n attributeValue = value.toString();\n attributeType = 'string';\n }\n else {\n attributeValue = value;\n if (typeof value === 'string') {\n attributeType = 'string';\n }\n else if (typeof attributeValue === 'number') {\n attributeType = 'number';\n }\n else if (value instanceof Date) {\n // JavaScript's date type doesn't pass through the JS to native bridge.\n // Dates are instead serialized as milliseconds since epoch.\n attributeType = 'date';\n attributeValue = value.getTime();\n }\n else {\n throw 'Unsupported attribute type: ' + typeof attributeValue;\n }\n }\n const operation = {\n action: 'set',\n value: attributeValue,\n key: name,\n type: attributeType,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Removes an attribute.\n * @param name The name of the attribute to remove.\n * @return The attribute editor instance.\n */\n removeAttribute(name) {\n const operation = { action: 'remove', key: name };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies the attribute operations.\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=AttributeEditor.js.map","export var EventType;\n(function (EventType) {\n EventType[\"ChannelCreated\"] = \"channel_created\";\n EventType[\"NotificationResponse\"] = \"notification_response_received\";\n EventType[\"PushReceived\"] = \"push_received\";\n EventType[\"DeepLink\"] = \"deep_link_received\";\n EventType[\"MessageCenterUpdated\"] = \"message_center_updated\";\n EventType[\"PushNotificationStatusChangedStatus\"] = \"notification_status_changed\";\n EventType[\"DisplayMessageCenter\"] = \"display_message_center\";\n EventType[\"DisplayPreferenceCenter\"] = \"display_preference_center\";\n EventType[\"PushTokenReceived\"] = \"push_token_received\";\n EventType[\"IOSAuthorizedNotificationSettingsChanged\"] = \"ios_authorized_notification_settings_changed\";\n EventType[\"IOSLiveActivitiesUpdated\"] = \"ios_live_activities_updated\";\n})(EventType || (EventType = {}));\n//# sourceMappingURL=EventType.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Enum of internal subscription list update type.\n * @hidden\n */\nvar SubscriptionListOperationAction;\n(function (SubscriptionListOperationAction) {\n SubscriptionListOperationAction[\"subscribe\"] = \"subscribe\";\n SubscriptionListOperationAction[\"unsubscribe\"] = \"unsubscribe\";\n})(SubscriptionListOperationAction || (SubscriptionListOperationAction = {}));\n/**\n * Subscription list editor.\n */\nexport class SubscriptionListEditor {\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Subscribes to a list.\n *\n * @param subscriptionListId The subscription list identifier.\n * @returns The editor\n */\n subscribe(subscriptionListId) {\n const operation = {\n listId: subscriptionListId,\n action: SubscriptionListOperationAction.subscribe,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Unsubscribe from a list.\n *\n * @param subscriptionListId The subscription list identifier.\n * @returns The editor\n */\n unsubscribe(subscriptionListId) {\n const operation = {\n listId: subscriptionListId,\n action: SubscriptionListOperationAction.unsubscribe,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies subscription list changes.\n *\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=SubscriptionListEditor.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Editor for device tags.\n */\nexport class TagEditor {\n /**\n * TagEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Adds tags to a channel.\n *\n * @param tags Tags to add.\n * @return The tag editor instance.\n */\n addTags(tags) {\n const operation = { operationType: 'add', tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Removes tags from the channel.\n *\n * @param tags Tags to remove.\n * @return The tag editor instance.\n */\n removeTags(tags) {\n const operation = { operationType: 'remove', tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies the tag changes.\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=TagEditor.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Editor for tag groups.\n */\nexport class TagGroupEditor {\n /**\n * TagGroupEditor constructor\n *\n * @hidden\n * @param onApply The apply function\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Adds tags to a tag group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to add.\n * @return The tag group editor instance.\n */\n addTags(group, tags) {\n const operation = { operationType: 'add', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Removes tags from the tag group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to remove.\n * @return The tag group editor instance.\n */\n removeTags(group, tags) {\n const operation = { operationType: 'remove', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Overwrite the current set of tags on the Tag Group.\n *\n * @param tagGroup The tag group.\n * @param tags Tags to set.\n * @return The tag group editor instance.\n */\n setTags(group, tags) {\n const operation = { operationType: 'set', group: group, tags: tags };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies the tag changes.\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=TagGroupEditor.js.map","import { AttributeEditor } from './AttributeEditor';\nimport { EventType } from './EventType';\nimport { SubscriptionListEditor } from './SubscriptionListEditor';\nimport { TagEditor } from './TagEditor';\nimport { TagGroupEditor } from './TagGroupEditor';\n/**\n * Airship channel.\n */\nexport class AirshipChannel {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Gets the device tags.\n * @returns A promise with the result.\n */\n getTags() {\n return this.plugin.perform('channel#getTags');\n }\n /**\n * Gets the channel Id.\n *\n * @returns A promise with the result.\n */\n getChannelId() {\n return this.plugin.perform('channel#getChannelId');\n }\n /**\n * Gets a list of the channel's subscriptions.\n * @returns A promise with the result.\n */\n getSubscriptionLists() {\n return this.plugin.perform('channel#getSubscriptionLists');\n }\n /**\n * Edits tags.\n * @returns A tag group editor.\n */\n editTags() {\n return new TagEditor((operations) => {\n return this.plugin.perform('channel#editTags', operations);\n });\n }\n /**\n * Edits tag groups.\n * @returns A tag group editor.\n */\n editTagGroups() {\n return new TagGroupEditor((operations) => {\n return this.plugin.perform('channel#editTagGroups', operations);\n });\n }\n /**\n * Edits attributes.\n * @returns An attribute editor.\n */\n editAttributes() {\n return new AttributeEditor((operations) => {\n return this.plugin.perform('channel#editAttributes', operations);\n });\n }\n /**\n * Edits subscription lists.\n * @returns A subscription list editor.\n */\n editSubscriptionLists() {\n return new SubscriptionListEditor((operations) => {\n return this.plugin.perform('channel#editSubscriptionLists', operations);\n });\n }\n /**\n * Enables channel creation if channel creation has been delayed.\n * It is only necessary to call this when isChannelCreationDelayEnabled\n * has been set to `true` in the airship config.\n * Deprecated. Use the Private Manager to disable all features instead.\n */\n enableChannelCreation() {\n return this.plugin.perform('channel#enableChannelCreation');\n }\n /**\n * Adds a channel created listener\n */\n onChannelCreated(listener) {\n return this.plugin.addListener(EventType.ChannelCreated, listener);\n }\n}\n//# sourceMappingURL=AirshipChannel.js.map","/* Copyright Airship and Contributors */\n'use strict';\n/**\n * Enum of internal scoped subscription list update type.\n * @hidden\n */\nvar ScopedSubscriptionListOperationAction;\n(function (ScopedSubscriptionListOperationAction) {\n ScopedSubscriptionListOperationAction[\"subscribe\"] = \"subscribe\";\n ScopedSubscriptionListOperationAction[\"unsubscribe\"] = \"unsubscribe\";\n})(ScopedSubscriptionListOperationAction || (ScopedSubscriptionListOperationAction = {}));\n/**\n * Scoped subscription list editor.\n */\nexport class ScopedSubscriptionListEditor {\n /**\n */\n constructor(onApply) {\n this.onApply = onApply;\n this.operations = [];\n }\n /**\n * Subscribes to a list in the given scope.\n *\n * @param subscriptionListId The subscription list identifier.\n * @param scope The subscription scope to subscribe.\n * @returns The editor.\n */\n subscribe(subscriptionListId, scope) {\n const operation = {\n listId: subscriptionListId,\n action: ScopedSubscriptionListOperationAction.subscribe,\n scope: scope,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Unsubscribe from a list.\n *\n * @param subscriptionListId The subscription list identifier.\n * @param scope The subscription scope to unsubscribe.\n * @returns The editor.\n */\n unsubscribe(subscriptionListId, scope) {\n const operation = {\n listId: subscriptionListId,\n action: ScopedSubscriptionListOperationAction.unsubscribe,\n scope: scope,\n };\n this.operations.push(operation);\n return this;\n }\n /**\n * Applies subscription list changes.\n *\n */\n apply() {\n return this.onApply(this.operations);\n }\n}\n//# sourceMappingURL=ScopedSubscriptionListEditor.js.map","import { AttributeEditor } from './AttributeEditor';\nimport { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';\nimport { TagGroupEditor } from './TagGroupEditor';\n/**\n * Airship contact.\n */\nexport class AirshipContact {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Identifies the contact with a named user Id.\n * @param namedUser The named user Id.\n * @returns A promise.\n */\n identify(namedUser) {\n return this.plugin.perform('contact#identify', namedUser);\n }\n /**\n * Resets the contact.\n * @returns A promise.\n */\n reset() {\n return this.plugin.perform('contact#reset');\n }\n /**\n * Gets the named user Id.\n * @returns A promise with the result.\n */\n getNamedUserId() {\n return this.plugin.perform('contact#getNamedUserId');\n }\n /**\n * Gets the contacts subscription lists.\n * @returns A promise with the result.\n */\n getSubscriptionLists() {\n return this.plugin.perform('contact#getSubscriptionLists');\n }\n /**\n * Edits tag groups.\n * @returns A tag group editor.\n */\n editTagGroups() {\n return new TagGroupEditor((operations) => {\n return this.plugin.perform('contact#editTagGroups', operations);\n });\n }\n /**\n * Edits attributes.\n * @returns An attribute editor.\n */\n editAttributes() {\n return new AttributeEditor((operations) => {\n return this.plugin.perform('contact#editAttributes', operations);\n });\n }\n /**\n * Edits subscription lists.\n * @returns A subscription list editor.\n */\n editSubscriptionLists() {\n return new ScopedSubscriptionListEditor((operations) => {\n return this.plugin.perform('contact#editSubscriptionLists', operations);\n });\n }\n}\n//# sourceMappingURL=AirshipContact.js.map","/**\n * Airship feature flag manager.\n */\nexport class AirshipFeatureFlagManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Retrieve a given flag's status and associated data by its name.\n * @param {string} flagName The flag name\n * @return {Promise<FeatureFlag>} A promise resolving to the feature flag\n * requested.\n * @throws {Error} when failed to fetch\n */\n flag(flagName) {\n return this.plugin.perform('featureFlagManager#flag', flagName);\n }\n /**\n * Tracks a feature flag interaction event.\n * @param {FeatureFlag} flag The flag\n * @return {Promise<Void>} A promise with an empty result.\n * @throws {Error} when failed to fetch\n */\n trackInteraction(flag) {\n return this.plugin.perform('featureFlagManager#trackInteraction', flag);\n }\n}\n//# sourceMappingURL=AirshipFeatureFlagManager.js.map","/**\n * Airship InApp Experiences.\n */\nexport class AirshipInApp {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Pauses messages.\n * @param paused `true` to pause, `false` to resume.\n * @returns A promise.\n */\n setPaused(paused) {\n return this.plugin.perform('inApp#setPaused', paused);\n }\n /**\n * Checks if messages are paused.\n * @returns A promise with the result.\n */\n isPaused() {\n return this.plugin.perform('inApp#isPaused');\n }\n /**\n * Sets the display interval for messages.\n * @param milliseconds Display interval\n * @returns A promise.\n */\n setDisplayInterval(milliseconds) {\n return this.plugin.perform('inApp#setDisplayInterval', milliseconds);\n }\n /**\n * Gets the display interval.\n * @returns A promise with the result.\n */\n getDisplayInterval() {\n return this.plugin.perform('inApp#getDisplayInterval');\n }\n}\n//# sourceMappingURL=AirshipInApp.js.map","/**\n * Manages locale used by Airship messaging.\n */\nexport class AirshipLocale {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Sets the locale override.\n * @param localeIdentifier The locale identifier.\n * @returns A promise.\n */\n setLocaleOverride(localeIdentifier) {\n return this.plugin.perform('locale#setLocaleOverride', localeIdentifier);\n }\n /**\n * Clears the locale override.\n * @returns A promise.\n */\n clearLocaleOverride() {\n return this.plugin.perform('locale#clearLocaleOverride');\n }\n /**\n * Gets the current locale.\n * @returns A promise with the result.\n */\n getLocale() {\n return this.plugin.perform('locale#getLocale');\n }\n}\n//# sourceMappingURL=AirshipLocale.js.map","import { EventType } from './EventType';\n/**\n * Airship Message Center\n */\nexport class AirshipMessageCenter {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Gets the unread count.\n * @returns A promise with the result.\n */\n getUnreadCount() {\n return this.plugin.perform('messageCenter#getUnreadCount');\n }\n /**\n * Gets the inbox messages.\n * @returns A promise with the result.\n */\n getMessages() {\n return this.plugin.perform('messageCenter#getMessages');\n }\n /**\n * Marks a message as read.\n * @param messageId The message Id.\n * @returns A promise. Will reject if the message is not\n * found or if takeOff is not called.\n */\n markMessageRead(messageId) {\n return this.plugin.perform('messageCenter#markMessageRead', messageId);\n }\n /**\n * Deletes a message.\n * @param messageId The message Id.\n * @returns A promise. Will reject if the message is not\n * found or if takeOff is not called.\n */\n deleteMessage(messageId) {\n return this.plugin.perform('messageCenter#deleteMessage', messageId);\n }\n /**\n * Dismisses the OOTB message center if displayed.\n * @returns A promise.\n */\n dismiss() {\n return this.plugin.perform('messageCenter#dismiss');\n }\n /**\n * Requests to display the Message Center.\n *\n * Will either emit an event to display the\n * Message Center if auto launch message center\n * is disabled, or display the OOTB message center.\n * @param messageId Optional message Id.\n * @returns A promise.\n */\n display(messageId) {\n return this.plugin.perform('messageCenter#display', messageId);\n }\n /**\n * Overlays the message view. Should be used to display the actual\n * message body in a custom Message Center.\n *\n * @param messageId The message Id.\n * @returns A promise.\n */\n showMessageView(messageId) {\n return this.plugin.perform('messageCenter#showMessageView', messageId);\n }\n /**\n * Overlays the message center regardless if auto launch Message Center is enabled or not.\n *\n * @param messageId Optional message Id.\n * @returns A promise.\n */\n showMessageCenter(messageId) {\n return this.plugin.perform('messageCenter#showMessageCenter', messageId);\n }\n /**\n * Refreshes the messages.\n * @returns A promise. Will reject if the list fails to refresh or if\n * takeOff is not called yet.\n */\n refreshMessages() {\n return this.plugin.perform('messageCenter#refreshMessages');\n }\n /**\n * Enables or disables showing the OOTB UI when requested to display by either\n * `display` or by a notification with a Message Center action.\n * @param autoLaunch true to show OOTB UI, false to emit events.\n */\n setAutoLaunchDefaultMessageCenter(autoLaunch) {\n return this.plugin.perform('messageCenter#setAutoLaunchDefaultMessageCenter', autoLaunch);\n }\n /**\n * Adds a display message center listener.\n */\n onDisplay(listener) {\n return this.plugin.addListener(EventType.DisplayMessageCenter, listener);\n }\n /**\n * Adds a message center list updated listener.\n */\n onUpdated(listener) {\n return this.plugin.addListener(EventType.MessageCenterUpdated, listener);\n }\n}\n//# sourceMappingURL=AirshipMessageCenter.js.map","import { EventType } from './EventType';\n/**\n * Airship Preference Center.\n */\nexport class AirshipPreferenceCenter {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Requests to display a preference center.\n *\n * Will either emit an event to display the\n * Preference Center if auto launch is disabled,\n * or display the OOTB UI.\n * @param preferenceCenterId The preference center Id.\n * @returns A promise.\n */\n display(preferenceCenterId) {\n return this.plugin.perform('preferenceCenter#display', preferenceCenterId);\n }\n /**\n * Gets the preference center config.\n * @param preferenceCenterId The preference center Id.\n * @returns A promise with the result.\n */\n getConfig(preferenceCenterId) {\n return this.plugin.perform('preferenceCenter#getConfig', preferenceCenterId);\n }\n /**\n * Enables or disables showing the OOTB UI when requested to display by either\n * `display` or by a notification with some other action.\n * @param preferenceCenterId The preference center Id.\n * @param autoLaunch true to show OOTB UI, false to emit events.\n * @returns A promise with the result.\n */\n setAutoLaunchDefaultPreferenceCenter(preferenceCenterId, autoLaunch) {\n return this.plugin.perform('preferenceCenter#getConfig', [\n preferenceCenterId,\n autoLaunch,\n ]);\n }\n /**\n * Adds a display message center listener.\n */\n onDisplay(listener) {\n return this.plugin.addListener(EventType.DisplayPreferenceCenter, listener);\n }\n}\n//# sourceMappingURL=AirshipPreferenceCenter.js.map","/**\n * Airship Privacy Manager.\n */\nexport class AirshipPrivacyManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Sets the current set of enabled features.\n * @param features The features to set.\n * @returns A promise.\n */\n setEnabledFeatures(features) {\n return this.plugin.perform('privacyManager#setEnabledFeatures', features);\n }\n /**\n * Gets the current enabled features.\n * @returns A promise with the result.\n */\n getEnabledFeatures() {\n return this.plugin.perform('privacyManager#getEnabledFeatures');\n }\n /**\n * Enables additional features.\n * @param features The features to enable.\n * @returns A promise.\n */\n enableFeatures(features) {\n return this.plugin.perform('privacyManager#enableFeatures', features);\n }\n /**\n * Disable features.\n * @param features The features to disable.\n * @returns A promise.\n */\n disableFeatures(features) {\n return this.plugin.perform('privacyManager#disableFeatures', features);\n }\n /**\n * Checks if the features are enabled or not.\n * @param features The features to check.\n * @returns A promise with the result.\n */\n isFeaturesEnabled(features) {\n return this.plugin.perform('privacyManager#isFeaturesEnabled', features);\n }\n}\n//# sourceMappingURL=AirshipPrivacyManager.js.map","import { EventType } from './EventType';\n/**\n * Airship Push.\n */\nexport class AirshipPush {\n constructor(plugin) {\n this.plugin = plugin;\n this.iOS = new AirshipPushIOS(plugin);\n this.android = new AirshipPushAndroid(plugin);\n }\n /**\n * Enables/disables notifications on Airship.\n *\n * When enabled, it will cause the user to be prompted for\n * the permission on platforms that support it.\n * To get the result of the prompt, use `enableUserNotifications`.\n * @param enabled true to enable, false to disable\n * @returns A promise.\n */\n setUserNotificationsEnabled(enabled) {\n return this.plugin.perform('push#setUserNotificationsEnabled', enabled);\n }\n /**\n * Checks if user notifications are enabled or not on Airship.\n * @returns A promise with the result.\n */\n isUserNotificationsEnabled() {\n return this.plugin.perform('push#isUserNotificationsEnabled');\n }\n /**\n * Enables user notifications.\n * @param options Optional options.\n * @returns A promise with the permission result.\n */\n enableUserNotifications(options) {\n return this.plugin.perform('push#enableUserNotifications', options);\n }\n /**\n * Gets the notification status.\n * @returns A promise with the result.\n */\n getNotificationStatus() {\n return this.plugin.perform('push#getNotificationStatus');\n }\n /**\n * Gets the registration token if generated.\n * Use the event EventType.PushTokenReceived to be notified\n * when available.\n * @returns A promise with the result.\n */\n getPushToken() {\n return this.plugin.perform('push#getPushToken');\n }\n /**\n * Gets the list of active notifications.\n *\n * On Android, this list only includes notifications\n * sent through Airship.\n * @returns A promise with the result.\n */\n getActiveNotifications() {\n return this.plugin.perform('push#getActiveNotifications');\n }\n /**\n * Clears all notifications for the app.\n * @returns A promise with the result.\n */\n clearNotifications() {\n return this.plugin.perform('push#clearNotifications');\n }\n /**\n * Clears a specific notification.\n *\n * On Android, you can use this method to clear\n * notifications outside of Airship, The identifier is in\n * the format of <tag>:<id>.\n * @param identifier The identifier.\n * @returns A promise with the result.\n */\n clearNotification(identifier) {\n return this.plugin.perform('push#clearNotification', identifier);\n }\n /**\n * Adds a notification response event listener.\n */\n onNotificationResponse(listener) {\n return this.plugin.addListener(EventType.NotificationResponse, listener);\n }\n /**\n * Adds a push received event listener.\n */\n onPushReceived(listener) {\n return this.plugin.addListener(EventType.PushReceived, listener);\n }\n /**\n * Adds a notification status changed event listener.\n */\n onNotificationStatusChanged(listener) {\n return this.plugin.addListener(EventType.PushNotificationStatusChangedStatus, listener);\n }\n /**\n * Adds a notification status changed event listener.\n */\n onPushTokenReceived(listener) {\n return this.plugin.addListener(EventType.PushTokenReceived, listener);\n }\n}\n/**\n * iOS Push.\n */\nexport class AirshipPushIOS {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Sets the foreground presentation options.\n * @param options The foreground options.\n * @returns A promise.\n */\n setForegroundPresentationOptions(options) {\n return this.plugin.perform('push#ios#setForegroundPresentationOptions', options);\n }\n /**\n * Sets the notification options.\n * @param options The notification options.\n * @returns A promise.\n */\n setNotificationOptions(options) {\n return this.plugin.perform('push#ios#setNotificationOptions', options);\n }\n /**\n * Checks if autobadge is enabled.\n * @returns A promise with the result.\n */\n isAutobadgeEnabled() {\n return this.plugin.perform('push#ios#isAutobadgeEnabled');\n }\n /**\n * Enables/disables autobadge.\n * @param enabled true to enable, false to disable.\n * @returns A promise.\n */\n setAutobadgeEnabled(enabled) {\n return this.plugin.perform('push#ios#setAutobadgeEnabled', enabled);\n }\n /**\n * Set the badge number.\n * @param badge The badge number.\n * @returns A promise.\n */\n setBadgeNumber(badge) {\n return this.plugin.perform('push#ios#setBadgeNumber', badge);\n }\n /**\n * Gets the badge number.\n * @returns A promise with the result.\n */\n getBadgeNumber() {\n return this.plugin.perform('push#ios#getBadgeNumber');\n }\n /**\n * Enables/disables quiet time.\n *\n * @param enabled true to enable, false to disable\n * @returns A promise with the result.\n */\n setQuietTimeEnabled(enabled) {\n return this.plugin.perform('push#ios#setQuietTimeEnabled', enabled);\n }\n /**\n * Checks if quiet time is enabled or not.\n * @returns A promise with the result.\n */\n isQuietTimeEnabled() {\n return this.plugin.perform('push#ios#isQuietTimeEnabled');\n }\n /**\n * Sets quiet time.\n *\n * @param quietTime The quiet time.\n * @returns A promise with the result.\n */\n setQuietTime(quietTime) {\n return this.plugin.perform('push#ios#setQuietTime', quietTime);\n }\n /**\n * Gets the quiet time settings.\n *\n * @returns A promise with the result.\n */\n getQuietTime() {\n return this.plugin.perform('push#ios#getQuietTime');\n }\n /**\n * Adds a authorized settings changed event listener.\n */\n onAuthorizedSettingsChanged(listener) {\n return this.plugin.addListener(EventType.IOSAuthorizedNotificationSettingsChanged, listener);\n }\n}\n/**\n * Android Push.\n */\nexport class AirshipPushAndroid {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Checks if a notification category/channel is enabled.\n * @param channel The channel name.\n * @returns A promise with the result.\n */\n isNotificationChannelEnabled(channel) {\n return this.plugin.perform('push#android#isNotificationChannelEnabled', channel);\n }\n /**\n * Sets the notification config.\n * @param config The notification config.\n * @returns A promise with the result.\n */\n setNotificationConfig(config) {\n return this.plugin.perform('push#android#setNotificationConfig', config);\n }\n /**\n * Enables/disables showing notifications in the foreground.\n * @param enabled true to enable, false to disable.\n * @returns A promise with the result.\n */\n setForegroundNotificationsEnabled(enabled) {\n return this.plugin.perform('push#android#setForegroundNotificationsEnabled', enabled);\n }\n}\n//# sourceMappingURL=AirshipPush.js.map","import { EventType } from './EventType';\n/**\n * Live Activity manager.\n */\nexport class AirshipLiveActivityManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Lists any Live Activities for the request.\n * @param request The request options.\n * @returns A promise with the result.\n */\n list(request) {\n return this.plugin.perform('liveActivityManager#list', request);\n }\n /**\n * Lists all Live Activities.\n * @param request The request options.\n * @returns A promise with the result.\n */\n listAll() {\n return this.plugin.perform('liveActivityManager#listAll');\n }\n /**\n * Starts a Live Activity.\n * @param request The request options.\n * @returns A promise with the result.\n */\n start(request) {\n return this.plugin.perform('liveActivityManager#start', request);\n }\n /**\n * Updates a Live Activity.\n * @param request The request options.\n * @returns A promise with the result.\n */\n update(request) {\n return this.plugin.perform('liveActivityManager#update', request);\n }\n /**\n * Ends a Live Activity.\n * @param request The request options.\n * @returns A promise with the result.\n */\n end(request) {\n return this.plugin.perform('liveActivityManager#end', request);\n }\n /**\n * Adds a Live Activity listener.\n */\n onLiveActivityUpdates(listener) {\n return this.plugin.addListener(EventType.IOSLiveActivitiesUpdated, listener);\n }\n}\n//# sourceMappingURL=AirshipLiveActivityManager.js.map","/**\n * Live Update manager.\n */\nexport class AirshipLiveUpdateManager {\n constructor(plugin) {\n this.plugin = plugin;\n }\n /**\n * Lists any Live Updates for the request.\n * @param request The request options.\n * @returns A promise with the result.\n */\n list(request) {\n return this.plugin.perform('liveUpdateManager#list', request);\n }\n /**\n * Lists all Live Updates.\n * @returns A promise with the result.\n */\n listAll() {\n return this.plugin.perform('liveUpdateManager#listAll');\n }\n /**\n * Starts a Live Update.\n * @param request The request options.\n * @returns A promise with the result.\n */\n start(request) {\n return this.plugin.perform('liveUpdateManager#start', request);\n }\n /**\n * Updates a Live Update.\n * @param request The request options.\n * @returns A promise with the result.\n */\n update(request) {\n return this.plugin.perform('liveUpdateManager#update', request);\n }\n /**\n * Ends a Live Update.\n * @param request The request options.\n * @returns A promise with the result.\n */\n end(request) {\n return this.plugin.perform('liveUpdateManager#end', request);\n }\n /**\n * Clears all Live Updates.\n * @returns A promise with the result.\n */\n clearAll() {\n return this.plugin.perform('liveUpdateManager#clearAll');\n }\n}\n//# sourceMappingURL=AirshipLiveUpdateManager.js.map","import { AirshipActions } from './AirshipActions';\nimport { AirshipAnalytics } from './AirshipAnalytics';\nimport { AirshipChannel } from './AirshipChannel';\nimport { AirshipContact } from './AirshipContact';\nimport { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';\nimport { AirshipInApp } from './AirshipInApp';\nimport { AirshipLocale } from './AirshipLocale';\nimport { AirshipMessageCenter } from './AirshipMessageCenter';\nimport { AirshipPreferenceCenter } from './AirshipPreferenceCenter';\nimport { AirshipPrivacyManager } from './AirshipPrivacyManager';\nimport { AirshipPush } from './AirshipPush';\nimport { EventType } from './EventType';\nimport { AirshipLiveActivityManager } from './AirshipLiveActivityManager';\nimport { AirshipLiveUpdateManager } from './AirshipLiveUpdateManager';\n/**\n * Airship\n */\nexport class AirshipRoot {\n constructor(plugin) {\n this.plugin = plugin;\n this.actions = new AirshipActions(plugin);\n this.analytics = new AirshipAnalytics(plugin);\n this.channel = new AirshipChannel(plugin);\n this.contact = new AirshipContact(plugin);\n this.inApp = new AirshipInApp(plugin);\n this.locale = new AirshipLocale(plugin);\n this.messageCenter = new AirshipMessageCenter(plugin);\n this.preferenceCenter = new AirshipPreferenceCenter(plugin);\n this.privacyManager = new AirshipPrivacyManager(plugin);\n this.push = new AirshipPush(plugin);\n this.featureFlagManager = new AirshipFeatureFlagManager(plugin);\n this.iOS = new AirshipRootIOS(plugin);\n this.android = new AirshipRootAndroid(plugin);\n }\n /**\n * Calls takeOff. If Airship is already configured for\n * the app session, the new config will be applied on the next\n * app init.\n * @param config The config.\n * @returns A promise with the result. `true` if airship is ready.\n */\n takeOff(config) {\n return this.plugin.perform('takeOff', config);\n }\n /**\n * Checks if Airship is ready.\n * @returns A promise with the result.\n */\n isFlying() {\n return this.plugin.perform('isFlying');\n }\n /**\n * Adds a deep link listener.\n */\n onDeepLink(listener) {\n return this.plugin.addListener(EventType.DeepLink, listener);\n }\n}\nexport class AirshipRootIOS {\n constructor(plugin) {\n this.liveActivityManager = new AirshipLiveActivityManager(plugin);\n }\n}\nexport class AirshipRootAndroid {\n constructor(plugin) {\n this.liveUpdateManager = new AirshipLiveUpdateManager(plugin);\n }\n}\n//# sourceMappingURL=AirshipRoot.js.map","/// <reference types=\"@capacitor/cli\" />\nexport class AirshipPluginWrapper {\n constructor(plugin) {\n this.plugin = plugin;\n }\n perform(method, value) {\n return this.plugin.perform({ method: method, value: value }).then(value => {\n return value.value;\n });\n }\n addListener(eventType, listener) {\n return this.plugin.addListener(eventType, listener);\n }\n}\n//# sourceMappingURL=AirshipPlugin.js.map","/**\n * Enum of permission status.\n */\nexport var PermissionStatus;\n(function (PermissionStatus) {\n /**\n * Permission is granted.\n */\n PermissionStatus[\"Granted\"] = \"granted\";\n /**\n * Permission is denied.\n */\n PermissionStatus[\"Denied\"] = \"denied\";\n /**\n * Permission has not yet been requested.\n */\n PermissionStatus[\"NotDetermined\"] = \"not_determined\";\n})(PermissionStatus || (PermissionStatus = {}));\n/**\n * Fallback when prompting for permission and the permission is\n * already denied on iOS or is denied silently on Android.\n */\nexport var PromptPermissionFallback;\n(function (PromptPermissionFallback) {\n /**\n * Take the user to the system settings to enable the permission.\n */\n PromptPermissionFallback[\"SystemSettings\"] = \"systemSettings\";\n})(PromptPermissionFallback || (PromptPermissionFallback = {}));\n/**\n * iOS options\n */\nexport var iOS;\n(function (iOS) {\n /**\n * Enum of notification options. iOS only.\n */\n let NotificationOption;\n (function (NotificationOption) {\n /**\n * Alerts.\n */\n NotificationOption[\"Alert\"] = \"alert\";\n /**\n * Sounds.\n */\n NotificationOption[\"Sound\"] = \"sound\";\n /**\n * Badges.\n */\n NotificationOption[\"Badge\"] = \"badge\";\n /**\n * Car play.\n */\n NotificationOption[\"CarPlay\"] = \"car_play\";\n /**\n * Critical Alert.\n */\n NotificationOption[\"CriticalAlert\"] = \"critical_alert\";\n /**\n * Provides app notification settings.\n */\n NotificationOption[\"ProvidesAppNotificationSettings\"] = \"provides_app_notification_settings\";\n /**\n * Provisional.\n */\n NotificationOption[\"Provisional\"] = \"provisional\";\n })(NotificationOption = iOS.NotificationOption || (iOS.NotificationOption = {}));\n /**\n * Enum of foreground notification options.\n */\n let ForegroundPresentationOption;\n (function (ForegroundPresentationOption) {\n /**\n * Play the sound associated with the notification.\n */\n ForegroundPresentationOption[\"Sound\"] = \"sound\";\n /**\n * Apply the notification's badge value to the app’s icon.\n */\n ForegroundPresentationOption[\"Badge\"] = \"badge\";\n /**\n * Show the notification in Notification Center. On iOS 13 an older,\n * this will also show the notification as a banner.\n */\n ForegroundPresentationOption[\"List\"] = \"list\";\n /**\n * Present the notification as a banner. On iOS 13 an older,\n * this will also show the notification in the Notification Center.\n */\n ForegroundPresentationOption[\"Banner\"] = \"banner\";\n })(ForegroundPresentationOption = iOS.ForegroundPresentationOption || (iOS.ForegroundPresentationOption = {}));\n /**\n * Enum of authorized notification options.\n */\n let AuthorizedNotificationSetting;\n (function (AuthorizedNotificationSetting) {\n /**\n * Alerts.\n */\n AuthorizedNotificationSetting[\"Alert\"] = \"alert\";\n /**\n * Sounds.\n */\n AuthorizedNotificationSetting[\"Sound\"] = \"sound\";\n /**\n * Badges.\n */\n AuthorizedNotificationSetting[\"Badge\"] = \"badge\";\n /**\n * CarPlay.\n */\n AuthorizedNotificationSetting[\"CarPlay\"] = \"car_play\";\n /**\n * Lock screen.\n */\n AuthorizedNotificationSetting[\"LockScreen\"] = \"lock_screen\";\n /**\n * Notification center.\n */\n AuthorizedNotificationSetting[\"NotificationCenter\"] = \"notification_center\";\n /**\n * Critical alert.\n */\n AuthorizedNotificationSetting[\"CriticalAlert\"] = \"critical_alert\";\n /**\n * Announcement.\n */\n AuthorizedNotificationSetting[\"Announcement\"] = \"announcement\";\n /**\n * Scheduled delivery.\n */\n AuthorizedNotificationSetting[\"ScheduledDelivery\"] = \"scheduled_delivery\";\n /**\n * Time sensitive.\n */\n AuthorizedNotificationSetting[\"TimeSensitive\"] = \"time_sensitive\";\n })(AuthorizedNotificationSetting = iOS.AuthorizedNotificationSetting || (iOS.AuthorizedNotificationSetting = {}));\n /**\n * Enum of authorized status.\n */\n let AuthorizedNotificationStatus;\n (function (AuthorizedNotificationStatus) {\n /**\n * Not determined.\n */\n AuthorizedNotificationStatus[\"NotDetermined\"] = \"not_determined\";\n /**\n * Denied.\n */\n AuthorizedNotificationStatus[\"Denied\"] = \"denied\";\n /**\n * Authorized.\n */\n AuthorizedNotificationStatus[\"Authorized\"] = \"authorized\";\n /**\n * Provisional.\n */\n AuthorizedNotificationStatus[\"Provisional\"] = \"provisional\";\n /**\n * Ephemeral.\n */\n AuthorizedNotificationStatus[\"Ephemeral\"] = \"ephemeral\";\n })(AuthorizedNotificationStatus = iOS.AuthorizedNotificationStatus || (iOS.AuthorizedNotificationStatus = {}));\n})(iOS || (iOS = {}));\n/**\n * Enum of authorized Features.\n */\nexport var Feature;\n(function (Feature) {\n Feature[\"InAppAutomation\"] = \"in_app_automation\";\n Feature[\"MessageCenter\"] = \"message_center\";\n Feature[\"Push\"] = \"push\";\n // No longer used\n Feature[\"Chat\"] = \"chat\";\n Feature[\"Analytics\"] = \"analytics\";\n Feature[\"TagsAndAttributes\"] = \"tags_and_attributes\";\n Feature[\"Contacts\"] = \"contacts\";\n // No longer used\n Feature[\"Location\"] = \"location\";\n})(Feature || (Feature = {}));\n/**\n * All available features.\n */\nexport const FEATURES_ALL = Object.values(Feature);\n/**\n * Subscription Scope types.\n */\nexport var SubscriptionScope;\n(function (SubscriptionScope) {\n SubscriptionScope[\"App\"] = \"app\";\n SubscriptionScope[\"Web\"] = \"web\";\n SubscriptionScope[\"Sms\"] = \"sms\";\n SubscriptionScope[\"Email\"] = \"email\";\n})(SubscriptionScope || (SubscriptionScope = {}));\n//# sourceMappingURL=types.js.map","import { registerPlugin } from '@capacitor/core';\nimport { AirshipRoot } from './AirshipRoot';\nimport { AirshipPluginWrapper } from './AirshipPlugin';\nexport { AirshipRoot } from './AirshipRoot';\nexport { AirshipActions } from './AirshipActions';\nexport { AirshipAnalytics } from './AirshipAnalytics';\nexport { AirshipChannel } from './AirshipChannel';\nexport { AirshipContact } from './AirshipContact';\nexport { AirshipInApp } from './AirshipInApp';\nexport { AirshipLocale } from './AirshipLocale';\nexport { AirshipMessageCenter } from './AirshipMessageCenter';\nexport { AirshipPreferenceCenter } from './AirshipPreferenceCenter';\nexport { AirshipPrivacyManager } from './AirshipPrivacyManager';\nexport { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';\nexport { AirshipLiveActivityManager } from './AirshipLiveActivityManager';\nexport { AirshipLiveUpdateManager } from './AirshipLiveUpdateManager';\nexport { AirshipPush, AirshipPushAndroid, AirshipPushIOS } from './AirshipPush';\nexport { SubscriptionListEditor } from './SubscriptionListEditor';\nexport { TagGroupEditor } from './TagGroupEditor';\nexport { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';\nexport { AttributeEditor } from './AttributeEditor';\nexport * from './types';\nconst plugin = registerPlugin('Airship', {});\nconst sharedAirship = new AirshipRoot(new AirshipPluginWrapper(plugin));\nconst Airship = sharedAirship;\nexport { Airship };\n//# sourceMappingURL=index.js.map"],"names":["PermissionStatus","PromptPermissionFallback","iOS","Feature","SubscriptionScope","registerPlugin"],"mappings":"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"}
|
package/dist/plugin.js
CHANGED
|
@@ -1437,8 +1437,6 @@ var capacitorAirship = (function (exports, core) {
|
|
|
1437
1437
|
exports.SubscriptionListEditor = SubscriptionListEditor;
|
|
1438
1438
|
exports.TagGroupEditor = TagGroupEditor;
|
|
1439
1439
|
|
|
1440
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1441
|
-
|
|
1442
1440
|
return exports;
|
|
1443
1441
|
|
|
1444
1442
|
})({}, capacitorExports);
|