@ua/react-native-airship 21.1.0 → 22.0.0
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/android/build.gradle +22 -28
- package/android/{src/oldarch/java/com/facebook/react/viewmanagers/RTNAirshipEmbeddedViewManagerDelegate.java → generated/java/com/facebook/react/viewmanagers/RNAirshipEmbeddedViewManagerDelegate.java} +4 -3
- package/android/generated/java/com/facebook/react/viewmanagers/RNAirshipEmbeddedViewManagerInterface.java +18 -0
- package/android/{src/oldarch/java/com/facebook/react/viewmanagers/RTNAirshipMessageViewManagerDelegate.java → generated/java/com/facebook/react/viewmanagers/RNAirshipMessageViewManagerDelegate.java} +4 -3
- package/android/generated/java/com/facebook/react/viewmanagers/RNAirshipMessageViewManagerInterface.java +18 -0
- package/android/generated/java/com/urbanairship/reactnative/NativeRNAirshipSpec.java +409 -0
- package/android/generated/jni/CMakeLists.txt +36 -0
- package/android/generated/jni/RNAirshipSpec-generated.cpp +584 -0
- package/android/generated/jni/RNAirshipSpec.h +31 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/ComponentDescriptors.cpp +23 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/ComponentDescriptors.h +25 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/EventEmitters.cpp +54 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/EventEmitters.h +52 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/Props.cpp +32 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/Props.h +37 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/RNAirshipSpecJSI-generated.cpp +659 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/RNAirshipSpecJSI.h +899 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/ShadowNodes.cpp +18 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/ShadowNodes.h +43 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/States.cpp +16 -0
- package/android/generated/jni/react/renderer/components/RNAirshipSpec/States.h +41 -0
- package/android/gradle.properties +1 -1
- package/android/src/main/java/com/urbanairship/reactnative/AirshipModule.kt +1 -1
- package/android/src/main/java/com/urbanairship/reactnative/ReactEmbeddedViewManager.kt +19 -10
- package/android/src/main/java/com/urbanairship/reactnative/ReactMessageViewManager.kt +19 -7
- package/android/src/newarch/java/com/urbanairship/reactnative/AirshipSpec.kt +1 -1
- package/android/src/oldarch/java/com/facebook/react/viewmanagers/{RTNAirshipEmbeddedViewManagerInterface.java → RNAirshipEmbeddedViewManagerInterface.java} +1 -1
- package/android/src/oldarch/java/com/facebook/react/viewmanagers/{RTNAirshipMessageViewManagerInterface.java → RNAirshipMessageViewManagerInterface.java} +1 -1
- package/ios/AirshipEmbeddedViewWrapper.swift +1 -1
- package/ios/AirshipReactNative.swift +1 -1
- package/ios/MessageWebViewWrapper.swift +2 -2
- package/ios/{RTNAirship.h → RNAirship.h} +3 -3
- package/ios/{RTNAirship.mm → RNAirship.mm} +27 -26
- package/ios/{RTNAirshipBootloader.h → RNAirshipBootloader.h} +1 -1
- package/ios/{RTNAirshipBootloader.m → RNAirshipBootloader.m} +2 -2
- package/ios/{RTNAirshipEmbeddedView.h → RNAirshipEmbeddedView.h} +7 -2
- package/ios/{RTNAirshipEmbeddedView.mm → RNAirshipEmbeddedView.mm} +28 -33
- package/ios/{RTNAirshipMessageViewManager.h → RNAirshipEmbeddedViewManager.h} +1 -1
- package/ios/RNAirshipEmbeddedViewViewManager.mm +17 -0
- package/ios/{RTNAirshipMessageView.h → RNAirshipMessageView.h} +9 -2
- package/ios/{RTNAirshipMessageView.mm → RNAirshipMessageView.mm} +54 -51
- package/ios/{RTNAirshipEmbeddedViewManager.h → RNAirshipMessageViewManager.h} +1 -1
- package/ios/RNAirshipMessageViewManager.mm +23 -0
- package/ios/generated/RNAirshipSpec/ComponentDescriptors.cpp +23 -0
- package/ios/generated/RNAirshipSpec/ComponentDescriptors.h +25 -0
- package/ios/generated/RNAirshipSpec/EventEmitters.cpp +54 -0
- package/ios/generated/RNAirshipSpec/EventEmitters.h +52 -0
- package/ios/generated/RNAirshipSpec/Props.cpp +32 -0
- package/ios/generated/RNAirshipSpec/Props.h +37 -0
- package/ios/generated/RNAirshipSpec/RCTComponentViewHelpers.h +24 -0
- package/ios/generated/RNAirshipSpec/RNAirshipSpec-generated.mm +683 -0
- package/ios/generated/RNAirshipSpec/RNAirshipSpec.h +291 -0
- package/ios/generated/RNAirshipSpec/ShadowNodes.cpp +18 -0
- package/ios/generated/RNAirshipSpec/ShadowNodes.h +43 -0
- package/ios/generated/RNAirshipSpec/States.cpp +16 -0
- package/ios/generated/RNAirshipSpec/States.h +41 -0
- package/ios/generated/RNAirshipSpecJSI-generated.cpp +659 -0
- package/ios/generated/RNAirshipSpecJSI.h +899 -0
- package/lib/commonjs/AirshipActions.js.map +1 -1
- package/lib/commonjs/AirshipAnalytics.js.map +1 -1
- package/lib/commonjs/AirshipChannel.js +4 -4
- package/lib/commonjs/AirshipChannel.js.map +1 -1
- package/lib/commonjs/AirshipContact.js +3 -3
- package/lib/commonjs/AirshipContact.js.map +1 -1
- package/lib/commonjs/AirshipEmbeddedView.js +6 -3
- package/lib/commonjs/AirshipEmbeddedView.js.map +1 -1
- package/lib/commonjs/AirshipFeatureFlagManager.js.map +1 -1
- package/lib/commonjs/AirshipInApp.js +5 -9
- package/lib/commonjs/AirshipInApp.js.map +1 -1
- package/lib/commonjs/AirshipLiveActivityManager.js.map +1 -1
- package/lib/commonjs/AirshipLiveUpdateManager.js.map +1 -1
- package/lib/commonjs/AirshipLocale.js.map +1 -1
- package/lib/commonjs/AirshipMessageCenter.js.map +1 -1
- package/lib/commonjs/AirshipPreferenceCenter.js.map +1 -1
- package/lib/commonjs/AirshipPrivacyManager.js +1 -1
- package/lib/commonjs/AirshipPrivacyManager.js.map +1 -1
- package/lib/commonjs/AirshipPush.js.map +1 -1
- package/lib/commonjs/AirshipRoot.js +14 -14
- package/lib/commonjs/AirshipRoot.js.map +1 -1
- package/lib/commonjs/AttributeEditor.js.map +1 -1
- package/lib/commonjs/MessageView.js +15 -5
- package/lib/commonjs/MessageView.js.map +1 -1
- package/lib/commonjs/{NativeRTNAirship.js → NativeRNAirship.js} +2 -2
- package/lib/commonjs/NativeRNAirship.js.map +1 -0
- package/lib/commonjs/{MessageViewNativeComponent.js → RNAirshipEmbeddedViewNativeComponent.js} +3 -3
- package/lib/commonjs/RNAirshipEmbeddedViewNativeComponent.js.map +1 -0
- package/lib/commonjs/{AirshipEmbeddedViewNativeComponent.js → RNAirshipMessageViewNativeComponent.js} +3 -3
- package/lib/commonjs/RNAirshipMessageViewNativeComponent.js.map +1 -0
- package/lib/commonjs/ScopedSubscriptionListEditor.js.map +1 -1
- package/lib/commonjs/SubscriptionListEditor.js.map +1 -1
- package/lib/commonjs/TagEditor.js.map +1 -1
- package/lib/commonjs/TagGroupEditor.js.map +1 -1
- package/lib/commonjs/UAEventEmitter.js +1 -2
- package/lib/commonjs/UAEventEmitter.js.map +1 -1
- package/lib/commonjs/index.js +22 -22
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types.js +95 -2
- package/lib/commonjs/types.js.map +1 -1
- package/lib/module/AirshipActions.js +2 -0
- package/lib/module/AirshipActions.js.map +1 -1
- package/lib/module/AirshipAnalytics.js +2 -0
- package/lib/module/AirshipAnalytics.js.map +1 -1
- package/lib/module/AirshipChannel.js +6 -4
- package/lib/module/AirshipChannel.js.map +1 -1
- package/lib/module/AirshipContact.js +5 -3
- package/lib/module/AirshipContact.js.map +1 -1
- package/lib/module/AirshipEmbeddedView.js +5 -3
- package/lib/module/AirshipEmbeddedView.js.map +1 -1
- package/lib/module/AirshipFeatureFlagManager.js +2 -0
- package/lib/module/AirshipFeatureFlagManager.js.map +1 -1
- package/lib/module/AirshipInApp.js +7 -9
- package/lib/module/AirshipInApp.js.map +1 -1
- package/lib/module/AirshipLiveActivityManager.js +2 -0
- package/lib/module/AirshipLiveActivityManager.js.map +1 -1
- package/lib/module/AirshipLiveUpdateManager.js +2 -0
- package/lib/module/AirshipLiveUpdateManager.js.map +1 -1
- package/lib/module/AirshipLocale.js +2 -0
- package/lib/module/AirshipLocale.js.map +1 -1
- package/lib/module/AirshipMessageCenter.js +2 -0
- package/lib/module/AirshipMessageCenter.js.map +1 -1
- package/lib/module/AirshipPreferenceCenter.js +2 -0
- package/lib/module/AirshipPreferenceCenter.js.map +1 -1
- package/lib/module/AirshipPrivacyManager.js +3 -1
- package/lib/module/AirshipPrivacyManager.js.map +1 -1
- package/lib/module/AirshipPush.js +2 -0
- package/lib/module/AirshipPush.js.map +1 -1
- package/lib/module/AirshipRoot.js +16 -14
- package/lib/module/AirshipRoot.js.map +1 -1
- package/lib/module/AttributeEditor.js.map +1 -1
- package/lib/module/MessageView.js +14 -4
- package/lib/module/MessageView.js.map +1 -1
- package/lib/module/NativeRNAirship.js +5 -0
- package/lib/module/NativeRNAirship.js.map +1 -0
- package/lib/module/RNAirshipEmbeddedViewNativeComponent.js +6 -0
- package/lib/module/RNAirshipEmbeddedViewNativeComponent.js.map +1 -0
- package/lib/module/RNAirshipMessageViewNativeComponent.js +6 -0
- package/lib/module/RNAirshipMessageViewNativeComponent.js.map +1 -0
- package/lib/module/ScopedSubscriptionListEditor.js.map +1 -1
- package/lib/module/SubscriptionListEditor.js.map +1 -1
- package/lib/module/TagEditor.js.map +1 -1
- package/lib/module/TagGroupEditor.js.map +1 -1
- package/lib/module/UAEventEmitter.js +3 -2
- package/lib/module/UAEventEmitter.js.map +1 -1
- package/lib/module/index.js +25 -23
- package/lib/module/index.js.map +1 -1
- package/lib/module/types.js +97 -2
- package/lib/module/types.js.map +1 -1
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/AirshipActions.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipAnalytics.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipChannel.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipContact.d.ts.map +1 -0
- package/lib/typescript/{AirshipEmbeddedView.d.ts → commonjs/src/AirshipEmbeddedView.d.ts} +3 -1
- package/lib/typescript/commonjs/src/AirshipEmbeddedView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipFeatureFlagManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipInApp.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipLiveActivityManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipLiveUpdateManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipLocale.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipMessageCenter.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipPreferenceCenter.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipPrivacyManager.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipPush.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AirshipRoot.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/AttributeEditor.d.ts.map +1 -0
- package/lib/typescript/{MessageView.d.ts → commonjs/src/MessageView.d.ts} +7 -6
- package/lib/typescript/commonjs/src/MessageView.d.ts.map +1 -0
- package/lib/typescript/{NativeRTNAirship.d.ts → commonjs/src/NativeRNAirship.d.ts} +2 -2
- package/lib/typescript/commonjs/src/NativeRNAirship.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/RNAirshipEmbeddedViewNativeComponent.d.ts +7 -0
- package/lib/typescript/commonjs/src/RNAirshipEmbeddedViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/{MessageViewNativeComponent.d.ts → commonjs/src/RNAirshipMessageViewNativeComponent.d.ts} +3 -5
- package/lib/typescript/commonjs/src/RNAirshipMessageViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/ScopedSubscriptionListEditor.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/SubscriptionListEditor.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/TagEditor.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/TagGroupEditor.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/UAEventEmitter.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/{types.d.ts → commonjs/src/types.d.ts} +2 -2
- package/lib/typescript/commonjs/src/types.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/AirshipActions.d.ts +18 -0
- package/lib/typescript/module/src/AirshipActions.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipAnalytics.d.ts +35 -0
- package/lib/typescript/module/src/AirshipAnalytics.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipChannel.d.ts +69 -0
- package/lib/typescript/module/src/AirshipChannel.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipContact.d.ts +53 -0
- package/lib/typescript/module/src/AirshipContact.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipEmbeddedView.d.ts +19 -0
- package/lib/typescript/module/src/AirshipEmbeddedView.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipFeatureFlagManager.d.ts +51 -0
- package/lib/typescript/module/src/AirshipFeatureFlagManager.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipInApp.d.ts +47 -0
- package/lib/typescript/module/src/AirshipInApp.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipLiveActivityManager.d.ts +39 -0
- package/lib/typescript/module/src/AirshipLiveActivityManager.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipLiveUpdateManager.d.ts +43 -0
- package/lib/typescript/module/src/AirshipLiveUpdateManager.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipLocale.d.ts +24 -0
- package/lib/typescript/module/src/AirshipLocale.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipMessageCenter.d.ts +74 -0
- package/lib/typescript/module/src/AirshipMessageCenter.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipPreferenceCenter.d.ts +32 -0
- package/lib/typescript/module/src/AirshipPreferenceCenter.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipPrivacyManager.d.ts +38 -0
- package/lib/typescript/module/src/AirshipPrivacyManager.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipPush.d.ts +161 -0
- package/lib/typescript/module/src/AirshipPush.d.ts.map +1 -0
- package/lib/typescript/module/src/AirshipRoot.d.ts +84 -0
- package/lib/typescript/module/src/AirshipRoot.d.ts.map +1 -0
- package/lib/typescript/module/src/AttributeEditor.d.ts +55 -0
- package/lib/typescript/module/src/AttributeEditor.d.ts.map +1 -0
- package/lib/typescript/module/src/MessageView.d.ts +108 -0
- package/lib/typescript/module/src/MessageView.d.ts.map +1 -0
- package/lib/typescript/module/src/NativeRNAirship.d.ts +99 -0
- package/lib/typescript/module/src/NativeRNAirship.d.ts.map +1 -0
- package/lib/typescript/module/src/RNAirshipEmbeddedViewNativeComponent.d.ts +7 -0
- package/lib/typescript/module/src/RNAirshipEmbeddedViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/src/RNAirshipMessageViewNativeComponent.d.ts +26 -0
- package/lib/typescript/module/src/RNAirshipMessageViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/module/src/ScopedSubscriptionListEditor.d.ts +60 -0
- package/lib/typescript/module/src/ScopedSubscriptionListEditor.d.ts.map +1 -0
- package/lib/typescript/module/src/SubscriptionListEditor.d.ts +51 -0
- package/lib/typescript/module/src/SubscriptionListEditor.d.ts.map +1 -0
- package/lib/typescript/module/src/TagEditor.d.ts +47 -0
- package/lib/typescript/module/src/TagEditor.d.ts.map +1 -0
- package/lib/typescript/module/src/TagGroupEditor.d.ts +61 -0
- package/lib/typescript/module/src/TagGroupEditor.d.ts.map +1 -0
- package/lib/typescript/module/src/UAEventEmitter.d.ts +27 -0
- package/lib/typescript/module/src/UAEventEmitter.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +25 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/lib/typescript/module/src/types.d.ts +938 -0
- package/lib/typescript/module/src/types.d.ts.map +1 -0
- package/package.json +79 -45
- package/react-native-airship.podspec +22 -4
- package/react-native.config.js +12 -0
- package/src/AirshipEmbeddedView.tsx +5 -2
- package/src/MessageView.tsx +9 -7
- package/src/{NativeRTNAirship.ts → NativeRNAirship.ts} +2 -2
- package/src/{AirshipEmbeddedViewNativeComponent.ts → RNAirshipEmbeddedViewNativeComponent.ts} +2 -2
- package/src/{MessageViewNativeComponent.ts → RNAirshipMessageViewNativeComponent.ts} +2 -2
- package/src/index.tsx +2 -2
- package/ios/RTNAirshipEmbeddedViewViewManager.mm +0 -17
- package/ios/RTNAirshipMessageViewManager.mm +0 -22
- package/lib/commonjs/AirshipEmbeddedViewNativeComponent.js.map +0 -1
- package/lib/commonjs/MessageViewNativeComponent.js.map +0 -1
- package/lib/commonjs/NativeRTNAirship.js.map +0 -1
- package/lib/module/AirshipEmbeddedViewNativeComponent.js +0 -4
- package/lib/module/AirshipEmbeddedViewNativeComponent.js.map +0 -1
- package/lib/module/MessageViewNativeComponent.js +0 -4
- package/lib/module/MessageViewNativeComponent.js.map +0 -1
- package/lib/module/NativeRTNAirship.js +0 -3
- package/lib/module/NativeRTNAirship.js.map +0 -1
- package/lib/typescript/AirshipActions.d.ts.map +0 -1
- package/lib/typescript/AirshipAnalytics.d.ts.map +0 -1
- package/lib/typescript/AirshipChannel.d.ts.map +0 -1
- package/lib/typescript/AirshipContact.d.ts.map +0 -1
- package/lib/typescript/AirshipEmbeddedView.d.ts.map +0 -1
- package/lib/typescript/AirshipEmbeddedViewNativeComponent.d.ts +0 -9
- package/lib/typescript/AirshipEmbeddedViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/AirshipFeatureFlagManager.d.ts.map +0 -1
- package/lib/typescript/AirshipInApp.d.ts.map +0 -1
- package/lib/typescript/AirshipLiveActivityManager.d.ts.map +0 -1
- package/lib/typescript/AirshipLiveUpdateManager.d.ts.map +0 -1
- package/lib/typescript/AirshipLocale.d.ts.map +0 -1
- package/lib/typescript/AirshipMessageCenter.d.ts.map +0 -1
- package/lib/typescript/AirshipPreferenceCenter.d.ts.map +0 -1
- package/lib/typescript/AirshipPrivacyManager.d.ts.map +0 -1
- package/lib/typescript/AirshipPush.d.ts.map +0 -1
- package/lib/typescript/AirshipRoot.d.ts.map +0 -1
- package/lib/typescript/AttributeEditor.d.ts.map +0 -1
- package/lib/typescript/MessageView.d.ts.map +0 -1
- package/lib/typescript/MessageViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/NativeRTNAirship.d.ts.map +0 -1
- package/lib/typescript/ScopedSubscriptionListEditor.d.ts.map +0 -1
- package/lib/typescript/SubscriptionListEditor.d.ts.map +0 -1
- package/lib/typescript/TagEditor.d.ts.map +0 -1
- package/lib/typescript/TagGroupEditor.d.ts.map +0 -1
- package/lib/typescript/UAEventEmitter.d.ts.map +0 -1
- package/lib/typescript/index.d.ts.map +0 -1
- package/lib/typescript/types.d.ts.map +0 -1
- /package/lib/typescript/{AirshipActions.d.ts → commonjs/src/AirshipActions.d.ts} +0 -0
- /package/lib/typescript/{AirshipAnalytics.d.ts → commonjs/src/AirshipAnalytics.d.ts} +0 -0
- /package/lib/typescript/{AirshipChannel.d.ts → commonjs/src/AirshipChannel.d.ts} +0 -0
- /package/lib/typescript/{AirshipContact.d.ts → commonjs/src/AirshipContact.d.ts} +0 -0
- /package/lib/typescript/{AirshipFeatureFlagManager.d.ts → commonjs/src/AirshipFeatureFlagManager.d.ts} +0 -0
- /package/lib/typescript/{AirshipInApp.d.ts → commonjs/src/AirshipInApp.d.ts} +0 -0
- /package/lib/typescript/{AirshipLiveActivityManager.d.ts → commonjs/src/AirshipLiveActivityManager.d.ts} +0 -0
- /package/lib/typescript/{AirshipLiveUpdateManager.d.ts → commonjs/src/AirshipLiveUpdateManager.d.ts} +0 -0
- /package/lib/typescript/{AirshipLocale.d.ts → commonjs/src/AirshipLocale.d.ts} +0 -0
- /package/lib/typescript/{AirshipMessageCenter.d.ts → commonjs/src/AirshipMessageCenter.d.ts} +0 -0
- /package/lib/typescript/{AirshipPreferenceCenter.d.ts → commonjs/src/AirshipPreferenceCenter.d.ts} +0 -0
- /package/lib/typescript/{AirshipPrivacyManager.d.ts → commonjs/src/AirshipPrivacyManager.d.ts} +0 -0
- /package/lib/typescript/{AirshipPush.d.ts → commonjs/src/AirshipPush.d.ts} +0 -0
- /package/lib/typescript/{AirshipRoot.d.ts → commonjs/src/AirshipRoot.d.ts} +0 -0
- /package/lib/typescript/{AttributeEditor.d.ts → commonjs/src/AttributeEditor.d.ts} +0 -0
- /package/lib/typescript/{ScopedSubscriptionListEditor.d.ts → commonjs/src/ScopedSubscriptionListEditor.d.ts} +0 -0
- /package/lib/typescript/{SubscriptionListEditor.d.ts → commonjs/src/SubscriptionListEditor.d.ts} +0 -0
- /package/lib/typescript/{TagEditor.d.ts → commonjs/src/TagEditor.d.ts} +0 -0
- /package/lib/typescript/{TagGroupEditor.d.ts → commonjs/src/TagGroupEditor.d.ts} +0 -0
- /package/lib/typescript/{UAEventEmitter.d.ts → commonjs/src/UAEventEmitter.d.ts} +0 -0
- /package/lib/typescript/{index.d.ts → commonjs/src/index.d.ts} +0 -0
package/lib/commonjs/index.js
CHANGED
|
@@ -154,24 +154,24 @@ Object.defineProperty(exports, "TagGroupEditor", {
|
|
|
154
154
|
});
|
|
155
155
|
exports.default = void 0;
|
|
156
156
|
var _reactNative = require("react-native");
|
|
157
|
-
var _AirshipRoot = require("./AirshipRoot");
|
|
158
|
-
var _AirshipActions = require("./AirshipActions");
|
|
159
|
-
var _AirshipAnalytics = require("./AirshipAnalytics");
|
|
160
|
-
var _AirshipChannel = require("./AirshipChannel");
|
|
161
|
-
var _AirshipContact = require("./AirshipContact");
|
|
162
|
-
var _AirshipInApp = require("./AirshipInApp");
|
|
163
|
-
var _AirshipLocale = require("./AirshipLocale");
|
|
164
|
-
var _AirshipMessageCenter = require("./AirshipMessageCenter");
|
|
165
|
-
var _AirshipPreferenceCenter = require("./AirshipPreferenceCenter");
|
|
166
|
-
var _AirshipPrivacyManager = require("./AirshipPrivacyManager");
|
|
167
|
-
var _AirshipFeatureFlagManager = require("./AirshipFeatureFlagManager");
|
|
168
|
-
var _AirshipLiveActivityManager = require("./AirshipLiveActivityManager");
|
|
169
|
-
var _AirshipPush = require("./AirshipPush");
|
|
170
|
-
var _SubscriptionListEditor = require("./SubscriptionListEditor");
|
|
171
|
-
var _TagGroupEditor = require("./TagGroupEditor");
|
|
172
|
-
var _ScopedSubscriptionListEditor = require("./ScopedSubscriptionListEditor");
|
|
173
|
-
var _AttributeEditor = require("./AttributeEditor");
|
|
174
|
-
var _types = require("./types");
|
|
157
|
+
var _AirshipRoot = require("./AirshipRoot.js");
|
|
158
|
+
var _AirshipActions = require("./AirshipActions.js");
|
|
159
|
+
var _AirshipAnalytics = require("./AirshipAnalytics.js");
|
|
160
|
+
var _AirshipChannel = require("./AirshipChannel.js");
|
|
161
|
+
var _AirshipContact = require("./AirshipContact.js");
|
|
162
|
+
var _AirshipInApp = require("./AirshipInApp.js");
|
|
163
|
+
var _AirshipLocale = require("./AirshipLocale.js");
|
|
164
|
+
var _AirshipMessageCenter = require("./AirshipMessageCenter.js");
|
|
165
|
+
var _AirshipPreferenceCenter = require("./AirshipPreferenceCenter.js");
|
|
166
|
+
var _AirshipPrivacyManager = require("./AirshipPrivacyManager.js");
|
|
167
|
+
var _AirshipFeatureFlagManager = require("./AirshipFeatureFlagManager.js");
|
|
168
|
+
var _AirshipLiveActivityManager = require("./AirshipLiveActivityManager.js");
|
|
169
|
+
var _AirshipPush = require("./AirshipPush.js");
|
|
170
|
+
var _SubscriptionListEditor = require("./SubscriptionListEditor.js");
|
|
171
|
+
var _TagGroupEditor = require("./TagGroupEditor.js");
|
|
172
|
+
var _ScopedSubscriptionListEditor = require("./ScopedSubscriptionListEditor.js");
|
|
173
|
+
var _AttributeEditor = require("./AttributeEditor.js");
|
|
174
|
+
var _types = require("./types.js");
|
|
175
175
|
Object.keys(_types).forEach(function (key) {
|
|
176
176
|
if (key === "default" || key === "__esModule") return;
|
|
177
177
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -183,7 +183,7 @@ Object.keys(_types).forEach(function (key) {
|
|
|
183
183
|
}
|
|
184
184
|
});
|
|
185
185
|
});
|
|
186
|
-
var _MessageView = require("./MessageView");
|
|
186
|
+
var _MessageView = require("./MessageView.js");
|
|
187
187
|
Object.keys(_MessageView).forEach(function (key) {
|
|
188
188
|
if (key === "default" || key === "__esModule") return;
|
|
189
189
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -195,7 +195,7 @@ Object.keys(_MessageView).forEach(function (key) {
|
|
|
195
195
|
}
|
|
196
196
|
});
|
|
197
197
|
});
|
|
198
|
-
var _AirshipEmbeddedView = require("./AirshipEmbeddedView");
|
|
198
|
+
var _AirshipEmbeddedView = require("./AirshipEmbeddedView.js");
|
|
199
199
|
Object.keys(_AirshipEmbeddedView).forEach(function (key) {
|
|
200
200
|
if (key === "default" || key === "__esModule") return;
|
|
201
201
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -207,10 +207,10 @@ Object.keys(_AirshipEmbeddedView).forEach(function (key) {
|
|
|
207
207
|
}
|
|
208
208
|
});
|
|
209
209
|
});
|
|
210
|
-
var _UAEventEmitter = require("./UAEventEmitter");
|
|
210
|
+
var _UAEventEmitter = require("./UAEventEmitter.js");
|
|
211
211
|
// @ts-expect-error
|
|
212
212
|
const isTurboModuleEnabled = global.__turboModuleProxy != null;
|
|
213
|
-
const AirshipModule = isTurboModuleEnabled ? require('./
|
|
213
|
+
const AirshipModule = isTurboModuleEnabled ? require('./NativeRNAirship').default : _reactNative.NativeModules.RNAirship;
|
|
214
214
|
const sharedAirship = new _AirshipRoot.AirshipRoot(AirshipModule);
|
|
215
215
|
const Airship = sharedAirship;
|
|
216
216
|
var _default = exports.default = Airship;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","_AirshipRoot","_AirshipActions","_AirshipAnalytics","_AirshipChannel","_AirshipContact","_AirshipInApp","_AirshipLocale","_AirshipMessageCenter","_AirshipPreferenceCenter","_AirshipPrivacyManager","_AirshipFeatureFlagManager","_AirshipLiveActivityManager","_AirshipPush","_SubscriptionListEditor","_TagGroupEditor","_ScopedSubscriptionListEditor","_AttributeEditor","_types","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_MessageView","_AirshipEmbeddedView","_UAEventEmitter","isTurboModuleEnabled","global","__turboModuleProxy","AirshipModule","default","NativeModules","
|
|
1
|
+
{"version":3,"names":["_reactNative","require","_AirshipRoot","_AirshipActions","_AirshipAnalytics","_AirshipChannel","_AirshipContact","_AirshipInApp","_AirshipLocale","_AirshipMessageCenter","_AirshipPreferenceCenter","_AirshipPrivacyManager","_AirshipFeatureFlagManager","_AirshipLiveActivityManager","_AirshipPush","_SubscriptionListEditor","_TagGroupEditor","_ScopedSubscriptionListEditor","_AttributeEditor","_types","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_MessageView","_AirshipEmbeddedView","_UAEventEmitter","isTurboModuleEnabled","global","__turboModuleProxy","AirshipModule","default","NativeModules","RNAirship","sharedAirship","AirshipRoot","Airship","_default"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":"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","ignoreList":[]}
|
package/lib/commonjs/types.js
CHANGED
|
@@ -23,8 +23,17 @@ exports.iOS = exports.SubscriptionScope = exports.PromptPermissionFallback = exp
|
|
|
23
23
|
* Enum of permission status.
|
|
24
24
|
*/
|
|
25
25
|
let PermissionStatus = exports.PermissionStatus = /*#__PURE__*/function (PermissionStatus) {
|
|
26
|
+
/**
|
|
27
|
+
* Permission is granted.
|
|
28
|
+
*/
|
|
26
29
|
PermissionStatus["Granted"] = "granted";
|
|
30
|
+
/**
|
|
31
|
+
* Permission is denied.
|
|
32
|
+
*/
|
|
27
33
|
PermissionStatus["Denied"] = "denied";
|
|
34
|
+
/**
|
|
35
|
+
* Permission has not yet been requested.
|
|
36
|
+
*/
|
|
28
37
|
PermissionStatus["NotDetermined"] = "not_determined";
|
|
29
38
|
return PermissionStatus;
|
|
30
39
|
}({});
|
|
@@ -33,6 +42,9 @@ let PermissionStatus = exports.PermissionStatus = /*#__PURE__*/function (Permiss
|
|
|
33
42
|
* already denied on iOS or is denied silently on Android.
|
|
34
43
|
*/
|
|
35
44
|
let PromptPermissionFallback = exports.PromptPermissionFallback = /*#__PURE__*/function (PromptPermissionFallback) {
|
|
45
|
+
/**
|
|
46
|
+
* Take the user to the system settings to enable the permission.
|
|
47
|
+
*/
|
|
36
48
|
PromptPermissionFallback["SystemSettings"] = "systemSettings";
|
|
37
49
|
return PromptPermissionFallback;
|
|
38
50
|
}({});
|
|
@@ -71,43 +83,123 @@ let EventType = exports.EventType = /*#__PURE__*/function (EventType) {
|
|
|
71
83
|
let iOS = exports.iOS = void 0;
|
|
72
84
|
(function (_iOS) {
|
|
73
85
|
let NotificationOption = /*#__PURE__*/function (NotificationOption) {
|
|
86
|
+
/**
|
|
87
|
+
* Alerts.
|
|
88
|
+
*/
|
|
74
89
|
NotificationOption["Alert"] = "alert";
|
|
90
|
+
/**
|
|
91
|
+
* Sounds.
|
|
92
|
+
*/
|
|
75
93
|
NotificationOption["Sound"] = "sound";
|
|
94
|
+
/**
|
|
95
|
+
* Badges.
|
|
96
|
+
*/
|
|
76
97
|
NotificationOption["Badge"] = "badge";
|
|
98
|
+
/**
|
|
99
|
+
* Car play.
|
|
100
|
+
*/
|
|
77
101
|
NotificationOption["CarPlay"] = "car_play";
|
|
102
|
+
/**
|
|
103
|
+
* Critical Alert.
|
|
104
|
+
*/
|
|
78
105
|
NotificationOption["CriticalAlert"] = "critical_alert";
|
|
106
|
+
/**
|
|
107
|
+
* Provides app notification settings.
|
|
108
|
+
*/
|
|
79
109
|
NotificationOption["ProvidesAppNotificationSettings"] = "provides_app_notification_settings";
|
|
110
|
+
/**
|
|
111
|
+
* Provisional.
|
|
112
|
+
*/
|
|
80
113
|
NotificationOption["Provisional"] = "provisional";
|
|
81
114
|
return NotificationOption;
|
|
82
115
|
}({});
|
|
83
116
|
_iOS.NotificationOption = NotificationOption;
|
|
84
117
|
let ForegroundPresentationOption = /*#__PURE__*/function (ForegroundPresentationOption) {
|
|
118
|
+
/**
|
|
119
|
+
* Play the sound associated with the notification.
|
|
120
|
+
*/
|
|
85
121
|
ForegroundPresentationOption["Sound"] = "sound";
|
|
122
|
+
/**
|
|
123
|
+
* Apply the notification's badge value to the app’s icon.
|
|
124
|
+
*/
|
|
86
125
|
ForegroundPresentationOption["Badge"] = "badge";
|
|
126
|
+
/**
|
|
127
|
+
* Show the notification in Notification Center. On iOS 13 an older,
|
|
128
|
+
* this will also show the notification as a banner.
|
|
129
|
+
*/
|
|
87
130
|
ForegroundPresentationOption["List"] = "list";
|
|
131
|
+
/**
|
|
132
|
+
* Present the notification as a banner. On iOS 13 an older,
|
|
133
|
+
* this will also show the notification in the Notification Center.
|
|
134
|
+
*/
|
|
88
135
|
ForegroundPresentationOption["Banner"] = "banner";
|
|
89
136
|
return ForegroundPresentationOption;
|
|
90
137
|
}({});
|
|
91
138
|
_iOS.ForegroundPresentationOption = ForegroundPresentationOption;
|
|
92
139
|
let AuthorizedNotificationSetting = /*#__PURE__*/function (AuthorizedNotificationSetting) {
|
|
140
|
+
/**
|
|
141
|
+
* Alerts.
|
|
142
|
+
*/
|
|
93
143
|
AuthorizedNotificationSetting["Alert"] = "alert";
|
|
144
|
+
/**
|
|
145
|
+
* Sounds.
|
|
146
|
+
*/
|
|
94
147
|
AuthorizedNotificationSetting["Sound"] = "sound";
|
|
148
|
+
/**
|
|
149
|
+
* Badges.
|
|
150
|
+
*/
|
|
95
151
|
AuthorizedNotificationSetting["Badge"] = "badge";
|
|
152
|
+
/**
|
|
153
|
+
* CarPlay.
|
|
154
|
+
*/
|
|
96
155
|
AuthorizedNotificationSetting["CarPlay"] = "car_play";
|
|
156
|
+
/**
|
|
157
|
+
* Lock screen.
|
|
158
|
+
*/
|
|
97
159
|
AuthorizedNotificationSetting["LockScreen"] = "lock_screen";
|
|
160
|
+
/**
|
|
161
|
+
* Notification center.
|
|
162
|
+
*/
|
|
98
163
|
AuthorizedNotificationSetting["NotificationCenter"] = "notification_center";
|
|
164
|
+
/**
|
|
165
|
+
* Critical alert.
|
|
166
|
+
*/
|
|
99
167
|
AuthorizedNotificationSetting["CriticalAlert"] = "critical_alert";
|
|
168
|
+
/**
|
|
169
|
+
* Announcement.
|
|
170
|
+
*/
|
|
100
171
|
AuthorizedNotificationSetting["Announcement"] = "announcement";
|
|
172
|
+
/**
|
|
173
|
+
* Scheduled delivery.
|
|
174
|
+
*/
|
|
101
175
|
AuthorizedNotificationSetting["ScheduledDelivery"] = "scheduled_delivery";
|
|
176
|
+
/**
|
|
177
|
+
* Time sensitive.
|
|
178
|
+
*/
|
|
102
179
|
AuthorizedNotificationSetting["TimeSensitive"] = "time_sensitive";
|
|
103
180
|
return AuthorizedNotificationSetting;
|
|
104
181
|
}({});
|
|
105
182
|
_iOS.AuthorizedNotificationSetting = AuthorizedNotificationSetting;
|
|
106
183
|
let AuthorizedNotificationStatus = /*#__PURE__*/function (AuthorizedNotificationStatus) {
|
|
184
|
+
/**
|
|
185
|
+
* Not determined.
|
|
186
|
+
*/
|
|
107
187
|
AuthorizedNotificationStatus["NotDetermined"] = "not_determined";
|
|
188
|
+
/**
|
|
189
|
+
* Denied.
|
|
190
|
+
*/
|
|
108
191
|
AuthorizedNotificationStatus["Denied"] = "denied";
|
|
192
|
+
/**
|
|
193
|
+
* Authorized.
|
|
194
|
+
*/
|
|
109
195
|
AuthorizedNotificationStatus["Authorized"] = "authorized";
|
|
196
|
+
/**
|
|
197
|
+
* Provisional.
|
|
198
|
+
*/
|
|
110
199
|
AuthorizedNotificationStatus["Provisional"] = "provisional";
|
|
200
|
+
/**
|
|
201
|
+
* Ephemeral.
|
|
202
|
+
*/
|
|
111
203
|
AuthorizedNotificationStatus["Ephemeral"] = "ephemeral";
|
|
112
204
|
return AuthorizedNotificationStatus;
|
|
113
205
|
}({});
|
|
@@ -138,9 +230,10 @@ let Feature = exports.Feature = /*#__PURE__*/function (Feature) {
|
|
|
138
230
|
Feature["Contacts"] = "contacts";
|
|
139
231
|
Feature["FeatureFlags"] = "feature_flags";
|
|
140
232
|
Feature["Location"] = "location";
|
|
141
|
-
|
|
233
|
+
// No longer used. To be removed in version 20.0.0.
|
|
234
|
+
Feature["Chat"] = "chat"; // No longer used. To be removed in version 20.0.0.
|
|
142
235
|
return Feature;
|
|
143
|
-
}({});
|
|
236
|
+
}({});
|
|
144
237
|
/**
|
|
145
238
|
* All available features.
|
|
146
239
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["PermissionStatus","exports","PromptPermissionFallback","EventType","iOS","_iOS","NotificationOption","ForegroundPresentationOption","AuthorizedNotificationSetting","AuthorizedNotificationStatus","Android","Feature","FEATURES_ALL","Object","values","filter","feature","Location","Chat","SubscriptionScope"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":";;;;;;AA4BA;AACA;AACA;AAKA;AACA;AACA;AAQA;AACA;AACA;AAwBA;AACA;AACA;AAoBA;AACA;AACA;AAuCA;AACA;AACA;AAFA,IAGYA,gBAAgB,GAAAC,OAAA,CAAAD,gBAAA,0BAAhBA,gBAAgB;
|
|
1
|
+
{"version":3,"names":["PermissionStatus","exports","PromptPermissionFallback","EventType","iOS","_iOS","NotificationOption","ForegroundPresentationOption","AuthorizedNotificationSetting","AuthorizedNotificationStatus","Android","Feature","FEATURES_ALL","Object","values","filter","feature","Location","Chat","SubscriptionScope"],"sourceRoot":"../../src","sources":["types.ts"],"mappings":"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IAAID,OAAO,KAAKL,OAAO,CAACO,IACnE,CAAC;;AAED;AACA;AACA;AAFA,IAGYC,iBAAiB,GAAAlB,OAAA,CAAAkB,iBAAA,0BAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAA,OAAjBA,iBAAiB;AAAA;AAO7B;AACA;AACA;AA2DA;AACA;AACA;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAOA;AACA;AACA;AACA;AACA;AACA;AAmBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAyCA;AAkBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAkBA;AACA;AACA;AACA;AA8BA;AACA;AACA;AAoBA;AACA;AACA;AAgBA;AACA;AACA;AAQA;AACA;AACA;AAGA;AACA;AACA;AAYA;AACA;AACA;AAYA;AACA;AACA;AAsBA;AACA;AACA;AAKA;AACA;AACA;AAKA;AACA;AACA;AAOA;AACA;AACA;AAkCA;AACA;AACA;AAKA;AACA;AACA;AAsBA;AACA;AACA;AAuBA;AACA;AACA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipActions","constructor","module","run","actionName","actionValue","actionRun","name","value"],"sourceRoot":"../../src","sources":["AirshipActions.ts"],"mappings":"AAEA;AACA;AACA;AACA,OAAO,MAAMA,cAAc,CAAC;EAC1BC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,GAAGA,CACRC,UAAkB,EAClBC,WAAuB,EACgB;IACvC,OAAO,IAAI,CAACH,MAAM,CAACI,SAAS,CAAC;MAACC,IAAI,EAAEH,UAAU;MAAEI,KAAK,EAAEH;IAAW,CAAC,CAAC;EACtE;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipActions","constructor","module","run","actionName","actionValue","actionRun","name","value"],"sourceRoot":"../../src","sources":["AirshipActions.ts"],"mappings":";;AAEA;AACA;AACA;AACA,OAAO,MAAMA,cAAc,CAAC;EAC1BC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,GAAGA,CACRC,UAAkB,EAClBC,WAAuB,EACgB;IACvC,OAAO,IAAI,CAACH,MAAM,CAACI,SAAS,CAAC;MAACC,IAAI,EAAEH,UAAU;MAAEI,KAAK,EAAEH;IAAW,CAAC,CAAC;EACtE;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipAnalytics","constructor","module","associateIdentifier","key","identifier","analyticsAssociateIdentifier","trackScreen","screen","analyticsTrackScreen","addCustomEvent","event","getSessionId","analyticsGetSessionId"],"sourceRoot":"../../src","sources":["AirshipAnalytics.ts"],"mappings":"AAEA;AACA;AACA;AACA,OAAO,MAAMA,gBAAgB,CAAC;EAC5BC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;AACA;EACSC,mBAAmBA,CAACC,GAAW,EAAEC,UAAmB,EAAiB;IAC1E,OAAO,IAAI,CAACH,MAAM,CAACI,4BAA4B,CAACF,GAAG,EAAEC,UAAU,CAAC;EAClE;;EAEA;AACF;AACA;AACA;AACA;EACSE,WAAWA,CAACC,MAAe,EAAiB;IACjD,OAAO,IAAI,CAACN,MAAM,CAACO,oBAAoB,CAACD,MAAM,CAAC;EACjD;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,cAAcA,CAACC,KAAkB,EAAiB;IACvD,OAAO,IAAI,CAACT,MAAM,CAACQ,cAAc,CAACC,KAAK,CAAC;EAC1C;;EAEA;AACF;AACA;AACA;EACSC,YAAYA,CAAA,EAAoB;IACrC,OAAO,IAAI,CAACV,MAAM,CAACW,qBAAqB,CAAC,CAAC;EAC5C;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipAnalytics","constructor","module","associateIdentifier","key","identifier","analyticsAssociateIdentifier","trackScreen","screen","analyticsTrackScreen","addCustomEvent","event","getSessionId","analyticsGetSessionId"],"sourceRoot":"../../src","sources":["AirshipAnalytics.ts"],"mappings":";;AAEA;AACA;AACA;AACA,OAAO,MAAMA,gBAAgB,CAAC;EAC5BC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;AACA;EACSC,mBAAmBA,CAACC,GAAW,EAAEC,UAAmB,EAAiB;IAC1E,OAAO,IAAI,CAACH,MAAM,CAACI,4BAA4B,CAACF,GAAG,EAAEC,UAAU,CAAC;EAClE;;EAEA;AACF;AACA;AACA;AACA;EACSE,WAAWA,CAACC,MAAe,EAAiB;IACjD,OAAO,IAAI,CAACN,MAAM,CAACO,oBAAoB,CAACD,MAAM,CAAC;EACjD;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,cAAcA,CAACC,KAAkB,EAAiB;IACvD,OAAO,IAAI,CAACT,MAAM,CAACQ,cAAc,CAACC,KAAK,CAAC;EAC1C;;EAEA;AACF;AACA;AACA;EACSC,YAAYA,CAAA,EAAoB;IACrC,OAAO,IAAI,CAACV,MAAM,CAACW,qBAAqB,CAAC,CAAC;EAC5C;AACF","ignoreList":[]}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { AttributeEditor } from "./AttributeEditor.js";
|
|
4
|
+
import { SubscriptionListEditor } from "./SubscriptionListEditor.js";
|
|
5
|
+
import { TagGroupEditor } from "./TagGroupEditor.js";
|
|
6
|
+
import { TagEditor } from "./TagEditor.js";
|
|
5
7
|
|
|
6
8
|
/**
|
|
7
9
|
* Airship channel.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AttributeEditor","SubscriptionListEditor","TagGroupEditor","TagEditor","AirshipChannel","constructor","module","enableChannelCreation","channelEnableChannelCreation","addTag","tag","channelAddTag","removeTag","channelRemoveTag","editTags","operations","channelEditTags","getTags","channelGetTags","getChannelId","channelGetChannelId","getSubscriptionLists","channelGetSubscriptionLists","editTagGroups","channelEditTagGroups","editAttributes","channelEditAttributes","editSubscriptionLists","channelEditSubscriptionLists"],"sourceRoot":"../../src","sources":["AirshipChannel.ts"],"mappings":"AAAA,SAASA,eAAe,QAA4B,
|
|
1
|
+
{"version":3,"names":["AttributeEditor","SubscriptionListEditor","TagGroupEditor","TagEditor","AirshipChannel","constructor","module","enableChannelCreation","channelEnableChannelCreation","addTag","tag","channelAddTag","removeTag","channelRemoveTag","editTags","operations","channelEditTags","getTags","channelGetTags","getChannelId","channelGetChannelId","getSubscriptionLists","channelGetSubscriptionLists","editTagGroups","channelEditTagGroups","editAttributes","channelEditAttributes","editSubscriptionLists","channelEditSubscriptionLists"],"sourceRoot":"../../src","sources":["AirshipChannel.ts"],"mappings":";;AAAA,SAASA,eAAe,QAA4B,sBAAmB;AACvE,SACEC,sBAAsB,QACjB,6BAA0B;AACjC,SAASC,cAAc,QAA2B,qBAAkB;AACpE,SAASC,SAAS,QAAsB,gBAAa;;AAErD;AACA;AACA;AACA,OAAO,MAAMC,cAAc,CAAC;EAC1BC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;EACSC,qBAAqBA,CAAA,EAAkB;IAC5C,OAAO,IAAI,CAACD,MAAM,CAACE,4BAA4B,CAAC,CAAC;EACnD;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSC,MAAMA,CAACC,GAAW,EAAiB;IACxC,OAAO,IAAI,CAACJ,MAAM,CAACK,aAAa,CAACD,GAAG,CAAC;EACvC;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,SAASA,CAACF,GAAW,EAAiB;IAC3C,OAAO,IAAI,CAACJ,MAAM,CAACO,gBAAgB,CAACH,GAAG,CAAC;EAC1C;;EAEA;AACF;AACA;AACA;EACSI,QAAQA,CAAA,EAAc;IAC3B,OAAO,IAAIX,SAAS,CAAEY,UAA0B,IAAK;MACnD,OAAO,IAAI,CAACT,MAAM,CAACU,eAAe,CAACD,UAAU,CAAC;IAChD,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACSE,OAAOA,CAAA,EAAsB;IAClC,OAAO,IAAI,CAACX,MAAM,CAACY,cAAc,CAAC,CAAC;EACrC;;EAEA;AACF;AACA;AACA;AACA;EACSC,YAAYA,CAAA,EAAuC;IACxD,OAAO,IAAI,CAACb,MAAM,CAACc,mBAAmB,CAAC,CAAC;EAC1C;;EAEA;AACF;AACA;AACA;EACSC,oBAAoBA,CAAA,EAAsB;IAC/C,OAAO,IAAI,CAACf,MAAM,CAACgB,2BAA2B,CAAC,CAAC;EAClD;;EAEA;AACF;AACA;AACA;EACSC,aAAaA,CAAA,EAAmB;IACrC,OAAO,IAAIrB,cAAc,CAAEa,UAA+B,IAAK;MAC7D,OAAO,IAAI,CAACT,MAAM,CAACkB,oBAAoB,CAACT,UAAU,CAAC;IACrD,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACSU,cAAcA,CAAA,EAAoB;IACvC,OAAO,IAAIzB,eAAe,CAAEe,UAAgC,IAAK;MAC/D,OAAO,IAAI,CAACT,MAAM,CAACoB,qBAAqB,CAACX,UAAU,CAAC;IACtD,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACSY,qBAAqBA,CAAA,EAA2B;IACrD,OAAO,IAAI1B,sBAAsB,CAC9Bc,UAAuC,IAAK;MAC3C,OAAO,IAAI,CAACT,MAAM,CAACsB,4BAA4B,CAACb,UAAU,CAAC;IAC7D,CACF,CAAC;EACH;AACF","ignoreList":[]}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import {
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { AttributeEditor } from "./AttributeEditor.js";
|
|
4
|
+
import { ScopedSubscriptionListEditor } from "./ScopedSubscriptionListEditor.js";
|
|
5
|
+
import { TagGroupEditor } from "./TagGroupEditor.js";
|
|
4
6
|
/**
|
|
5
7
|
* Airship contact.
|
|
6
8
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AttributeEditor","ScopedSubscriptionListEditor","TagGroupEditor","AirshipContact","constructor","module","identify","namedUser","contactIdentify","reset","contactReset","notifyRemoteLogin","contactNotifyRemoteLogin","getNamedUserId","contactGetNamedUserId","getSubscriptionLists","contactGetSubscriptionLists","editTagGroups","operations","contactEditTagGroups","editAttributes","contactEditAttributes","editSubscriptionLists","contactEditSubscriptionLists"],"sourceRoot":"../../src","sources":["AirshipContact.ts"],"mappings":"AAAA,SAASA,eAAe,QAA4B,
|
|
1
|
+
{"version":3,"names":["AttributeEditor","ScopedSubscriptionListEditor","TagGroupEditor","AirshipContact","constructor","module","identify","namedUser","contactIdentify","reset","contactReset","notifyRemoteLogin","contactNotifyRemoteLogin","getNamedUserId","contactGetNamedUserId","getSubscriptionLists","contactGetSubscriptionLists","editTagGroups","operations","contactEditTagGroups","editAttributes","contactEditAttributes","editSubscriptionLists","contactEditSubscriptionLists"],"sourceRoot":"../../src","sources":["AirshipContact.ts"],"mappings":";;AAAA,SAASA,eAAe,QAA4B,sBAAmB;AACvE,SACEC,4BAA4B,QAEvB,mCAAgC;AACvC,SAASC,cAAc,QAA2B,qBAAkB;AAGpE;AACA;AACA;AACA,OAAO,MAAMC,cAAc,CAAC;EAC1BC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,QAAQA,CAACC,SAAiB,EAAiB;IAChD,OAAO,IAAI,CAACF,MAAM,CAACG,eAAe,CAACD,SAAS,CAAC;EAC/C;;EAEA;AACF;AACA;AACA;EACSE,KAAKA,CAAA,EAAkB;IAC5B,OAAO,IAAI,CAACJ,MAAM,CAACK,YAAY,CAAC,CAAC;EACnC;;EAEA;AACF;AACA;AACA;EACWC,iBAAiBA,CAAA,EAAkB;IACxC,OAAO,IAAI,CAACN,MAAM,CAACO,wBAAwB,CAAC,CAAC;EAC/C;;EAEF;AACF;AACA;AACA;EACSC,cAAcA,CAAA,EAAuC;IAC1D,OAAO,IAAI,CAACR,MAAM,CAACS,qBAAqB,CAAC,CAAC;EAC5C;;EAEA;AACF;AACA;AACA;EACSC,oBAAoBA,CAAA,EAAiD;IAC1E,OAAO,IAAI,CAACV,MAAM,CAACW,2BAA2B,CAAC,CAAC;EAClD;;EAEA;AACF;AACA;AACA;EACSC,aAAaA,CAAA,EAAmB;IACrC,OAAO,IAAIf,cAAc,CAAEgB,UAA+B,IAAK;MAC7D,OAAO,IAAI,CAACb,MAAM,CAACc,oBAAoB,CAACD,UAAU,CAAC;IACrD,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACSE,cAAcA,CAAA,EAAoB;IACvC,OAAO,IAAIpB,eAAe,CAAEkB,UAAgC,IAAK;MAC/D,OAAO,IAAI,CAACb,MAAM,CAACgB,qBAAqB,CAACH,UAAU,CAAC;IACtD,CAAC,CAAC;EACJ;;EAEA;AACF;AACA;AACA;EACSI,qBAAqBA,CAAA,EAAiC;IAC3D,OAAO,IAAIrB,4BAA4B,CACpCiB,UAA6C,IAAK;MACjD,OAAO,IAAI,CAACb,MAAM,CAACkB,4BAA4B,CAACL,UAAU,CAAC;IAC7D,CACF,CAAC;EACH;AACF","ignoreList":[]}
|
|
@@ -3,18 +3,20 @@
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
5
|
import React from 'react';
|
|
6
|
-
import
|
|
6
|
+
import RNAirshipEmbeddedView from "./RNAirshipEmbeddedViewNativeComponent.js";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* AirshipEmbeddedView props
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
12
12
|
/**
|
|
13
13
|
* Airship Embedded view.
|
|
14
14
|
*/
|
|
15
15
|
export class AirshipEmbeddedView extends React.Component {
|
|
16
16
|
render() {
|
|
17
|
-
return /*#__PURE__*/
|
|
17
|
+
return /*#__PURE__*/_jsx(RNAirshipEmbeddedView, {
|
|
18
|
+
...this.props
|
|
19
|
+
});
|
|
18
20
|
}
|
|
19
21
|
}
|
|
20
22
|
//# sourceMappingURL=AirshipEmbeddedView.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","
|
|
1
|
+
{"version":3,"names":["React","RNAirshipEmbeddedView","jsx","_jsx","AirshipEmbeddedView","Component","render","props"],"sourceRoot":"../../src","sources":["AirshipEmbeddedView.tsx"],"mappings":"AAAA;;AAEA,YAAY;;AAEZ,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,qBAAqB,MAAM,2CAAwC;;AAG1E;AACA;AACA;AAFA,SAAAC,GAAA,IAAAC,IAAA;AAYA;AACA;AACA;AACA,OAAO,MAAMC,mBAAmB,SAASJ,KAAK,CAACK,SAAS,CAA0B;EAChFC,MAAMA,CAAA,EAAG;IACP,oBACEH,IAAA,CAACF,qBAAqB;MAAA,GAChB,IAAI,CAACM;IAAK,CACf,CAAC;EAEN;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipFeatureFlagManager","constructor","module","resultCache","AirshipFeatureFlagResultCache","flag","flagName","useResultCache","featureFlagManagerFlag","trackInteraction","featureFlagManagerTrackInteraction","featureFlagManagerResultCacheGetFlag","cache","ttl","featureFlagManagerResultCacheSetFlag","removeCachedFlag","featureFlagManagerResultCacheRemoveFlag"],"sourceRoot":"../../src","sources":["AirshipFeatureFlagManager.ts"],"mappings":"AAEA;AACA;AACA;AACA,OAAO,MAAMA,yBAAyB,CAAC;EACrC;AACF;AACA;;EAGEC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;IACtC,IAAI,CAACC,WAAW,GAAG,IAAIC,6BAA6B,CAACF,MAAM,CAAC;EAC9D;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;EACSG,IAAIA,CACTC,QAAgB,EAChBC,cAAuB,GAAG,IAAI,EACR;IACtB,OAAO,IAAI,CAACL,MAAM,CAACM,sBAAsB,CAACF,QAAQ,EAAEC,cAAc,CAAC;EACrE;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,gBAAgBA,CAACJ,IAAiB,EAAiB;IACxD,OAAO,IAAI,CAACH,MAAM,CAACQ,kCAAkC,CAACL,IAAI,CAAC;EAC7D;AACF;AAEA,OAAO,MAAMD,6BAA6B,CAAC;EACzCH,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSG,IAAIA,CAACC,QAAgB,EAAwB;IAClD,OAAO,IAAI,CAACJ,MAAM,CAACS,oCAAoC,CAACL,QAAQ,CAAC;EACnE;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSM,KAAKA,CAACP,IAAiB,EAAEQ,GAAW,EAAiB;IAC1D,OAAO,IAAI,CAACX,MAAM,CAACY,oCAAoC,CAACT,IAAI,EAAEQ,GAAG,CAAC;EACpE;;EAEA;AACF;AACA;AACA;AACA;EACSE,gBAAgBA,CAACT,QAAgB,EAAiB;IACvD,OAAO,IAAI,CAACJ,MAAM,CAACc,uCAAuC,CAACV,QAAQ,CAAC;EACtE;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipFeatureFlagManager","constructor","module","resultCache","AirshipFeatureFlagResultCache","flag","flagName","useResultCache","featureFlagManagerFlag","trackInteraction","featureFlagManagerTrackInteraction","featureFlagManagerResultCacheGetFlag","cache","ttl","featureFlagManagerResultCacheSetFlag","removeCachedFlag","featureFlagManagerResultCacheRemoveFlag"],"sourceRoot":"../../src","sources":["AirshipFeatureFlagManager.ts"],"mappings":";;AAEA;AACA;AACA;AACA,OAAO,MAAMA,yBAAyB,CAAC;EACrC;AACF;AACA;;EAGEC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;IACtC,IAAI,CAACC,WAAW,GAAG,IAAIC,6BAA6B,CAACF,MAAM,CAAC;EAC9D;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;EACSG,IAAIA,CACTC,QAAgB,EAChBC,cAAuB,GAAG,IAAI,EACR;IACtB,OAAO,IAAI,CAACL,MAAM,CAACM,sBAAsB,CAACF,QAAQ,EAAEC,cAAc,CAAC;EACrE;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,gBAAgBA,CAACJ,IAAiB,EAAiB;IACxD,OAAO,IAAI,CAACH,MAAM,CAACQ,kCAAkC,CAACL,IAAI,CAAC;EAC7D;AACF;AAEA,OAAO,MAAMD,6BAA6B,CAAC;EACzCH,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSG,IAAIA,CAACC,QAAgB,EAAwB;IAClD,OAAO,IAAI,CAACJ,MAAM,CAACS,oCAAoC,CAACL,QAAQ,CAAC;EACnE;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSM,KAAKA,CAACP,IAAiB,EAAEQ,GAAW,EAAiB;IAC1D,OAAO,IAAI,CAACX,MAAM,CAACY,oCAAoC,CAACT,IAAI,EAAEQ,GAAG,CAAC;EACpE;;EAEA;AACF;AACA;AACA;AACA;EACSE,gBAAgBA,CAACT,QAAgB,EAAiB;IACvD,OAAO,IAAI,CAACJ,MAAM,CAACc,uCAAuC,CAACV,QAAQ,CAAC;EACtE;AACF","ignoreList":[]}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { Subscription } from "./UAEventEmitter.js";
|
|
2
4
|
/**
|
|
3
5
|
* Airship InApp Experiences.
|
|
4
6
|
*/
|
|
@@ -15,8 +17,7 @@ export class AirshipInApp {
|
|
|
15
17
|
if (!map.has(embeddedId)) {
|
|
16
18
|
map.set(embeddedId, [entry]);
|
|
17
19
|
} else {
|
|
18
|
-
|
|
19
|
-
(_map$get = map.get(embeddedId)) === null || _map$get === void 0 || _map$get.push(entry);
|
|
20
|
+
map.get(embeddedId)?.push(entry);
|
|
20
21
|
}
|
|
21
22
|
return map;
|
|
22
23
|
}, new Map());
|
|
@@ -49,12 +50,10 @@ export class AirshipInApp {
|
|
|
49
50
|
if (!this.pendingEmbeddedListeners.has(embeddedId)) {
|
|
50
51
|
this.pendingEmbeddedListeners.set(embeddedId, [wrappedListener]);
|
|
51
52
|
} else {
|
|
52
|
-
|
|
53
|
-
(_this$pendingEmbedded = this.pendingEmbeddedListeners.get(embeddedId)) === null || _this$pendingEmbedded === void 0 || _this$pendingEmbedded.push(wrappedListener);
|
|
53
|
+
this.pendingEmbeddedListeners.get(embeddedId)?.push(wrappedListener);
|
|
54
54
|
}
|
|
55
55
|
return new Subscription(() => {
|
|
56
|
-
|
|
57
|
-
this.pendingEmbeddedListeners.set(embeddedId, ((_this$pendingEmbedded2 = this.pendingEmbeddedListeners.get(embeddedId)) === null || _this$pendingEmbedded2 === void 0 ? void 0 : _this$pendingEmbedded2.filter(obj => obj !== wrappedListener)) ?? []);
|
|
56
|
+
this.pendingEmbeddedListeners.set(embeddedId, this.pendingEmbeddedListeners.get(embeddedId)?.filter(obj => obj !== wrappedListener) ?? []);
|
|
58
57
|
});
|
|
59
58
|
}
|
|
60
59
|
|
|
@@ -64,8 +63,7 @@ export class AirshipInApp {
|
|
|
64
63
|
* @returns `true` if one is ready, otherwise `false`.
|
|
65
64
|
*/
|
|
66
65
|
isEmbeddedReady(embeddedId) {
|
|
67
|
-
|
|
68
|
-
return (((_this$pendingEmbedded3 = this.pendingEmbedded.get(embeddedId)) === null || _this$pendingEmbedded3 === void 0 ? void 0 : _this$pendingEmbedded3.length) ?? 0) > 0;
|
|
66
|
+
return (this.pendingEmbedded.get(embeddedId)?.length ?? 0) > 0;
|
|
69
67
|
}
|
|
70
68
|
|
|
71
69
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Subscription","AirshipInApp","pendingEmbedded","Map","pendingEmbeddedListeners","constructor","module","eventEmitter","addListener","event","pending","reduce","map","entry","embeddedId","has","set","
|
|
1
|
+
{"version":3,"names":["Subscription","AirshipInApp","pendingEmbedded","Map","pendingEmbeddedListeners","constructor","module","eventEmitter","addListener","event","pending","reduce","map","entry","embeddedId","has","set","get","push","forEach","listeners","listener","inAppResendPendingEmbeddedEvent","addEmbeddedReadyListener","currentValue","isEmbeddedReady","wrappedListener","nextValue","length","filter","obj","setPaused","paused","inAppSetPaused","isPaused","inAppIsPaused","setDisplayInterval","milliseconds","inAppSetDisplayInterval","getDisplayInterval","inAppGetDisplayInterval"],"sourceRoot":"../../src","sources":["AirshipInApp.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipLiveActivityManager","constructor","module","list","request","liveActivityList","listAll","liveActivityListAll","start","liveActivityStart","update","liveActivityUpdate","end","liveActivityEnd"],"sourceRoot":"../../src","sources":["AirshipLiveActivityManager.ts"],"mappings":"AAQA;AACA;AACA;AACA,OAAO,MAAMA,0BAA0B,CAAC;EACtCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,IAAIA,CAACC,OAAgC,EAA2B;IACrE,OAAO,IAAI,CAACF,MAAM,CAACG,gBAAgB,CAACD,OAAO,CAAC;EAC9C;;EAEA;AACF;AACA;AACA;AACA;EACSE,OAAOA,CAAA,EAA4B;IACxC,OAAO,IAAI,CAACJ,MAAM,CAACK,mBAAmB,CAAC,CAAC;EAC1C;;EAEA;AACF;AACA;AACA;AACA;EACSC,KAAKA,CAACJ,OAAiC,EAAyB;IACrE,OAAO,IAAI,CAACF,MAAM,CAACO,iBAAiB,CAACL,OAAO,CAAC;EAC/C;;EAEA;AACF;AACA;AACA;AACA;EACSM,MAAMA,CAACN,OAAkC,EAAiB;IAC/D,OAAO,IAAI,CAACF,MAAM,CAACS,kBAAkB,CAACP,OAAO,CAAC;EAChD;;EAEA;AACF;AACA;AACA;AACA;EACSQ,GAAGA,CAACR,OAA+B,EAAiB;IACzD,OAAO,IAAI,CAACF,MAAM,CAACW,eAAe,CAACT,OAAO,CAAC;EAC7C;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipLiveActivityManager","constructor","module","list","request","liveActivityList","listAll","liveActivityListAll","start","liveActivityStart","update","liveActivityUpdate","end","liveActivityEnd"],"sourceRoot":"../../src","sources":["AirshipLiveActivityManager.ts"],"mappings":";;AAQA;AACA;AACA;AACA,OAAO,MAAMA,0BAA0B,CAAC;EACtCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,IAAIA,CAACC,OAAgC,EAA2B;IACrE,OAAO,IAAI,CAACF,MAAM,CAACG,gBAAgB,CAACD,OAAO,CAAC;EAC9C;;EAEA;AACF;AACA;AACA;AACA;EACSE,OAAOA,CAAA,EAA4B;IACxC,OAAO,IAAI,CAACJ,MAAM,CAACK,mBAAmB,CAAC,CAAC;EAC1C;;EAEA;AACF;AACA;AACA;AACA;EACSC,KAAKA,CAACJ,OAAiC,EAAyB;IACrE,OAAO,IAAI,CAACF,MAAM,CAACO,iBAAiB,CAACL,OAAO,CAAC;EAC/C;;EAEA;AACF;AACA;AACA;AACA;EACSM,MAAMA,CAACN,OAAkC,EAAiB;IAC/D,OAAO,IAAI,CAACF,MAAM,CAACS,kBAAkB,CAACP,OAAO,CAAC;EAChD;;EAEA;AACF;AACA;AACA;AACA;EACSQ,GAAGA,CAACR,OAA+B,EAAiB;IACzD,OAAO,IAAI,CAACF,MAAM,CAACW,eAAe,CAACT,OAAO,CAAC;EAC7C;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipLiveUpdateManager","constructor","module","list","request","liveUpdateList","listAll","liveUpdateListAll","start","liveUpdateStart","update","liveUpdateUpdate","end","liveUpdateEnd","clearAll","liveUpdateClearAll"],"sourceRoot":"../../src","sources":["AirshipLiveUpdateManager.ts"],"mappings":"AAQA;AACA;AACA;AACA,OAAO,MAAMA,wBAAwB,CAAC;EACpCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,IAAIA,CAACC,OAA8B,EAAyB;IACjE,OAAO,IAAI,CAACF,MAAM,CAACG,cAAc,CAACD,OAAO,CAAC;EAC5C;;EAEA;AACF;AACA;AACA;EACSE,OAAOA,CAAA,EAA0B;IACtC,OAAO,IAAI,CAACJ,MAAM,CAACK,iBAAiB,CAAC,CAAC;EACxC;;EAEA;AACF;AACA;AACA;AACA;EACSC,KAAKA,CAACJ,OAA+B,EAAiB;IAC3D,OAAO,IAAI,CAACF,MAAM,CAACO,eAAe,CAACL,OAAO,CAAC;EAC7C;;EAEA;AACF;AACA;AACA;AACA;EACSM,MAAMA,CAACN,OAAgC,EAAiB;IAC7D,OAAO,IAAI,CAACF,MAAM,CAACS,gBAAgB,CAACP,OAAO,CAAC;EAC9C;;EAEA;AACF;AACA;AACA;AACA;EACSQ,GAAGA,CAACR,OAA6B,EAAiB;IACvD,OAAO,IAAI,CAACF,MAAM,CAACW,aAAa,CAACT,OAAO,CAAC;EAC3C;;EAEA;AACF;AACA;AACA;EACSU,QAAQA,CAAA,EAAkB;IAC/B,OAAO,IAAI,CAACZ,MAAM,CAACa,kBAAkB,CAAC,CAAC;EACzC;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipLiveUpdateManager","constructor","module","list","request","liveUpdateList","listAll","liveUpdateListAll","start","liveUpdateStart","update","liveUpdateUpdate","end","liveUpdateEnd","clearAll","liveUpdateClearAll"],"sourceRoot":"../../src","sources":["AirshipLiveUpdateManager.ts"],"mappings":";;AAQA;AACA;AACA;AACA,OAAO,MAAMA,wBAAwB,CAAC;EACpCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,IAAIA,CAACC,OAA8B,EAAyB;IACjE,OAAO,IAAI,CAACF,MAAM,CAACG,cAAc,CAACD,OAAO,CAAC;EAC5C;;EAEA;AACF;AACA;AACA;EACSE,OAAOA,CAAA,EAA0B;IACtC,OAAO,IAAI,CAACJ,MAAM,CAACK,iBAAiB,CAAC,CAAC;EACxC;;EAEA;AACF;AACA;AACA;AACA;EACSC,KAAKA,CAACJ,OAA+B,EAAiB;IAC3D,OAAO,IAAI,CAACF,MAAM,CAACO,eAAe,CAACL,OAAO,CAAC;EAC7C;;EAEA;AACF;AACA;AACA;AACA;EACSM,MAAMA,CAACN,OAAgC,EAAiB;IAC7D,OAAO,IAAI,CAACF,MAAM,CAACS,gBAAgB,CAACP,OAAO,CAAC;EAC9C;;EAEA;AACF;AACA;AACA;AACA;EACSQ,GAAGA,CAACR,OAA6B,EAAiB;IACvD,OAAO,IAAI,CAACF,MAAM,CAACW,aAAa,CAACT,OAAO,CAAC;EAC3C;;EAEA;AACF;AACA;AACA;EACSU,QAAQA,CAAA,EAAkB;IAC/B,OAAO,IAAI,CAACZ,MAAM,CAACa,kBAAkB,CAAC,CAAC;EACzC;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipLocale","constructor","module","setLocaleOverride","localeIdentifier","localeSetLocaleOverride","clearLocaleOverride","localeClearLocaleOverride","getLocale","localeGetLocale"],"sourceRoot":"../../src","sources":["AirshipLocale.ts"],"mappings":"AAAA;AACA;AACA;AACA,OAAO,MAAMA,aAAa,CAAC;EACzBC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,iBAAiBA,CAACC,gBAAwB,EAAiB;IAChE,OAAO,IAAI,CAACF,MAAM,CAACG,uBAAuB,CAACD,gBAAgB,CAAC;EAC9D;;EAEA;AACF;AACA;AACA;EACSE,mBAAmBA,CAAA,EAAkB;IAC1C,OAAO,IAAI,CAACJ,MAAM,CAACK,yBAAyB,CAAC,CAAC;EAChD;;EAEA;AACF;AACA;AACA;EACSC,SAASA,CAAA,EAAoB;IAClC,OAAO,IAAI,CAACN,MAAM,CAACO,eAAe,CAAC,CAAC;EACtC;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipLocale","constructor","module","setLocaleOverride","localeIdentifier","localeSetLocaleOverride","clearLocaleOverride","localeClearLocaleOverride","getLocale","localeGetLocale"],"sourceRoot":"../../src","sources":["AirshipLocale.ts"],"mappings":";;AAAA;AACA;AACA;AACA,OAAO,MAAMA,aAAa,CAAC;EACzBC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,iBAAiBA,CAACC,gBAAwB,EAAiB;IAChE,OAAO,IAAI,CAACF,MAAM,CAACG,uBAAuB,CAACD,gBAAgB,CAAC;EAC9D;;EAEA;AACF;AACA;AACA;EACSE,mBAAmBA,CAAA,EAAkB;IAC1C,OAAO,IAAI,CAACJ,MAAM,CAACK,yBAAyB,CAAC,CAAC;EAChD;;EAEA;AACF;AACA;AACA;EACSC,SAASA,CAAA,EAAoB;IAClC,OAAO,IAAI,CAACN,MAAM,CAACO,eAAe,CAAC,CAAC;EACtC;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipMessageCenter","constructor","module","getUnreadCount","messageCenterGetUnreadCount","getMessages","messageCenterGetMessages","markMessageRead","messageId","messageCenterMarkMessageRead","deleteMessage","messageCenterDeleteMessage","dismiss","messageCenterDismiss","display","messageCenterDisplay","showMessageCenter","messageCenterShowMessageCenter","showMessageView","messageCenterShowMessageView","refreshMessages","messageCenterRefresh","setAutoLaunchDefaultMessageCenter","autoLaunch","messageCenterSetAutoLaunchDefaultMessageCenter"],"sourceRoot":"../../src","sources":["AirshipMessageCenter.ts"],"mappings":"AAEA;AACA;AACA;AACA,OAAO,MAAMA,oBAAoB,CAAC;EAChCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;EACSC,cAAcA,CAAA,EAAoB;IACvC,OAAO,IAAI,CAACD,MAAM,CAACE,2BAA2B,CAAC,CAAC;EAClD;;EAEA;AACF;AACA;AACA;EACSC,WAAWA,CAAA,EAA4B;IAC5C,OAAO,IAAI,CAACH,MAAM,CAACI,wBAAwB,CAAC,CAAC;EAC/C;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSC,eAAeA,CAACC,SAAiB,EAAiB;IACvD,OAAO,IAAI,CAACN,MAAM,CAACO,4BAA4B,CAACD,SAAS,CAAC;EAC5D;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,aAAaA,CAACF,SAAiB,EAAiB;IACrD,OAAO,IAAI,CAACN,MAAM,CAACS,0BAA0B,CAACH,SAAS,CAAC;EAC1D;;EAEA;AACF;AACA;AACA;EACSI,OAAOA,CAAA,EAAkB;IAC9B,OAAO,IAAI,CAACV,MAAM,CAACW,oBAAoB,CAAC,CAAC;EAC3C;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,OAAOA,CAACN,SAAkB,EAAiB;IAChD,OAAO,IAAI,CAACN,MAAM,CAACa,oBAAoB,CAACP,SAAS,CAAC;EACpD;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSQ,iBAAiBA,CAACR,SAAkB,EAAiB;IAC1D,OAAO,IAAI,CAACN,MAAM,CAACe,8BAA8B,CAACT,SAAS,CAAC;EAC9D;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSU,eAAeA,CAACV,SAAiB,EAAiB;IACvD,OAAO,IAAI,CAACN,MAAM,CAACiB,4BAA4B,CAACX,SAAS,CAAC;EAC5D;;EAEA;AACF;AACA;AACA;AACA;EACSY,eAAeA,CAAA,EAAkB;IACtC,OAAO,IAAI,CAAClB,MAAM,CAACmB,oBAAoB,CAAC,CAAC;EAC3C;;EAEA;AACF;AACA;AACA;AACA;EACSC,iCAAiCA,CAACC,UAAmB,EAAE;IAC5D,IAAI,CAACrB,MAAM,CAACsB,8CAA8C,CAACD,UAAU,CAAC;EACxE;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipMessageCenter","constructor","module","getUnreadCount","messageCenterGetUnreadCount","getMessages","messageCenterGetMessages","markMessageRead","messageId","messageCenterMarkMessageRead","deleteMessage","messageCenterDeleteMessage","dismiss","messageCenterDismiss","display","messageCenterDisplay","showMessageCenter","messageCenterShowMessageCenter","showMessageView","messageCenterShowMessageView","refreshMessages","messageCenterRefresh","setAutoLaunchDefaultMessageCenter","autoLaunch","messageCenterSetAutoLaunchDefaultMessageCenter"],"sourceRoot":"../../src","sources":["AirshipMessageCenter.ts"],"mappings":";;AAEA;AACA;AACA;AACA,OAAO,MAAMA,oBAAoB,CAAC;EAChCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;EACSC,cAAcA,CAAA,EAAoB;IACvC,OAAO,IAAI,CAACD,MAAM,CAACE,2BAA2B,CAAC,CAAC;EAClD;;EAEA;AACF;AACA;AACA;EACSC,WAAWA,CAAA,EAA4B;IAC5C,OAAO,IAAI,CAACH,MAAM,CAACI,wBAAwB,CAAC,CAAC;EAC/C;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSC,eAAeA,CAACC,SAAiB,EAAiB;IACvD,OAAO,IAAI,CAACN,MAAM,CAACO,4BAA4B,CAACD,SAAS,CAAC;EAC5D;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSE,aAAaA,CAACF,SAAiB,EAAiB;IACrD,OAAO,IAAI,CAACN,MAAM,CAACS,0BAA0B,CAACH,SAAS,CAAC;EAC1D;;EAEA;AACF;AACA;AACA;EACSI,OAAOA,CAAA,EAAkB;IAC9B,OAAO,IAAI,CAACV,MAAM,CAACW,oBAAoB,CAAC,CAAC;EAC3C;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,OAAOA,CAACN,SAAkB,EAAiB;IAChD,OAAO,IAAI,CAACN,MAAM,CAACa,oBAAoB,CAACP,SAAS,CAAC;EACpD;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSQ,iBAAiBA,CAACR,SAAkB,EAAiB;IAC1D,OAAO,IAAI,CAACN,MAAM,CAACe,8BAA8B,CAACT,SAAS,CAAC;EAC9D;;EAEA;AACF;AACA;AACA;AACA;AACA;EACSU,eAAeA,CAACV,SAAiB,EAAiB;IACvD,OAAO,IAAI,CAACN,MAAM,CAACiB,4BAA4B,CAACX,SAAS,CAAC;EAC5D;;EAEA;AACF;AACA;AACA;AACA;EACSY,eAAeA,CAAA,EAAkB;IACtC,OAAO,IAAI,CAAClB,MAAM,CAACmB,oBAAoB,CAAC,CAAC;EAC3C;;EAEA;AACF;AACA;AACA;AACA;EACSC,iCAAiCA,CAACC,UAAmB,EAAE;IAC5D,IAAI,CAACrB,MAAM,CAACsB,8CAA8C,CAACD,UAAU,CAAC;EACxE;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["AirshipPreferenceCenter","constructor","module","display","preferenceCenterId","preferenceCenterDisplay","getConfig","preferenceCenterGetConfig","setAutoLaunchDefaultPreferenceCenter","autoLaunch","preferenceCenterAutoLaunchDefaultPreferenceCenter"],"sourceRoot":"../../src","sources":["AirshipPreferenceCenter.ts"],"mappings":"AAEA;AACA;AACA;AACA,OAAO,MAAMA,uBAAuB,CAAC;EACnCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,OAAOA,CAACC,kBAA0B,EAAiB;IACxD,OAAO,IAAI,CAACF,MAAM,CAACG,uBAAuB,CAACD,kBAAkB,CAAC;EAChE;;EAEA;AACF;AACA;AACA;AACA;EACSE,SAASA,CAACF,kBAA0B,EAA6B;IACtE,OAAO,IAAI,CAACF,MAAM,CAACK,yBAAyB,CAACH,kBAAkB,CAAC;EAClE;;EAEC;AACH;AACA;AACA;AACA;AACA;EACSI,oCAAoCA,CACzCJ,kBAA0B,EAC1BK,UAAmB,EACb;IACN,OAAO,IAAI,CAACP,MAAM,CAACQ,iDAAiD,CAClEN,kBAAkB,EAClBK,UACF,CAAC;EACH;AACF"}
|
|
1
|
+
{"version":3,"names":["AirshipPreferenceCenter","constructor","module","display","preferenceCenterId","preferenceCenterDisplay","getConfig","preferenceCenterGetConfig","setAutoLaunchDefaultPreferenceCenter","autoLaunch","preferenceCenterAutoLaunchDefaultPreferenceCenter"],"sourceRoot":"../../src","sources":["AirshipPreferenceCenter.ts"],"mappings":";;AAEA;AACA;AACA;AACA,OAAO,MAAMA,uBAAuB,CAAC;EACnCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACSC,OAAOA,CAACC,kBAA0B,EAAiB;IACxD,OAAO,IAAI,CAACF,MAAM,CAACG,uBAAuB,CAACD,kBAAkB,CAAC;EAChE;;EAEA;AACF;AACA;AACA;AACA;EACSE,SAASA,CAACF,kBAA0B,EAA6B;IACtE,OAAO,IAAI,CAACF,MAAM,CAACK,yBAAyB,CAACH,kBAAkB,CAAC;EAClE;;EAEC;AACH;AACA;AACA;AACA;AACA;EACSI,oCAAoCA,CACzCJ,kBAA0B,EAC1BK,UAAmB,EACb;IACN,OAAO,IAAI,CAACP,MAAM,CAACQ,iDAAiD,CAClEN,kBAAkB,EAClBK,UACF,CAAC;EACH;AACF","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["Feature","AirshipPrivacyManager","constructor","module","setEnabledFeatures","features","privacyManagerSetEnabledFeatures","filter","feature","Location","Chat","getEnabledFeatures","privacyManagerGetEnabledFeatures","enableFeatures","privacyManagerEnableFeature","disableFeatures","privacyManagerDisableFeature","isFeaturesEnabled","privacyManagerIsFeatureEnabled"],"sourceRoot":"../../src","sources":["AirshipPrivacyManager.ts"],"mappings":"AAAA,SAASA,OAAO,QAAQ,
|
|
1
|
+
{"version":3,"names":["Feature","AirshipPrivacyManager","constructor","module","setEnabledFeatures","features","privacyManagerSetEnabledFeatures","filter","feature","Location","Chat","getEnabledFeatures","privacyManagerGetEnabledFeatures","enableFeatures","privacyManagerEnableFeature","disableFeatures","privacyManagerDisableFeature","isFeaturesEnabled","privacyManagerIsFeatureEnabled"],"sourceRoot":"../../src","sources":["AirshipPrivacyManager.ts"],"mappings":";;AAAA,SAASA,OAAO,QAAQ,YAAS;;AAEjC;AACA;AACA;AACA,OAAO,MAAMC,qBAAqB,CAAC;EACjCC,WAAWA,CAAkBC,MAAW,EAAE;IAAA,KAAbA,MAAW,GAAXA,MAAW;EAAG;;EAE3C;AACF;AACA;AACA;AACA;EACSC,kBAAkBA,CAACC,QAAmB,EAAiB;IAC5D,OAAO,IAAI,CAACF,MAAM,CAACG,gCAAgC,CACjDD,QAAQ,CAACE,MAAM,CAACC,OAAO,IACrBA,OAAO,KAAKR,OAAO,CAACS,QAAQ,IAAID,OAAO,KAAKR,OAAO,CAACU,IACtD,CACF,CAAC;EACH;EACA;AACF;AACA;AACA;EACSC,kBAAkBA,CAAA,EAAuB;IAC9C,OAAO,IAAI,CAACR,MAAM,CAACS,gCAAgC,CAAC,CAAC;EACvD;;EAEA;AACF;AACA;AACA;AACA;EACSC,cAAcA,CAACR,QAAmB,EAAiB;IACxD,OAAO,IAAI,CAACF,MAAM,CAACW,2BAA2B,CAC5CT,QAAQ,CAACE,MAAM,CAACC,OAAO,IACrBA,OAAO,KAAKR,OAAO,CAACS,QAAQ,IAAID,OAAO,KAAKR,OAAO,CAACU,IACtD,CACF,CAAC;EACH;;EAEA;AACF;AACA;AACA;AACA;EACSK,eAAeA,CAACV,QAAmB,EAAiB;IACzD,OAAO,IAAI,CAACF,MAAM,CAACa,4BAA4B,CAC7CX,QAAQ,CAACE,MAAM,CAACC,OAAO,IACrBA,OAAO,KAAKR,OAAO,CAACS,QAAQ,IAAID,OAAO,KAAKR,OAAO,CAACU,IACtD,CACF,CAAC;EACH;;EAEA;AACF;AACA;AACA;AACA;EACSO,iBAAiBA,CAACZ,QAAmB,EAAiB;IAC3D,OAAO,IAAI,CAACF,MAAM,CAACe,8BAA8B,CAC/Cb,QAAQ,CAACE,MAAM,CAACC,OAAO,IACrBA,OAAO,KAAKR,OAAO,CAACS,QAAQ,IAAID,OAAO,KAAKR,OAAO,CAACU,IACtD,CACF,CAAC;EACH;AACF","ignoreList":[]}
|