@ua/react-native-airship 21.2.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/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
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import type { TurboModule } from 'react-native';
|
|
2
|
+
export interface Spec extends TurboModule {
|
|
3
|
+
takeOff(config: Object): Promise<boolean>;
|
|
4
|
+
isFlying(): Promise<boolean>;
|
|
5
|
+
airshipListenerAdded(eventName: string): void;
|
|
6
|
+
takePendingEvents(eventName: string, isHeadlessJS: boolean): Promise<Object[]>;
|
|
7
|
+
addListener: (eventType: string) => void;
|
|
8
|
+
removeListeners: (count: number) => void;
|
|
9
|
+
channelEnableChannelCreation(): Promise<void>;
|
|
10
|
+
channelAddTag(tag: string): Promise<void>;
|
|
11
|
+
channelRemoveTag(tag: string): Promise<void>;
|
|
12
|
+
channelEditTags(operations: Object[]): Promise<void>;
|
|
13
|
+
channelGetTags(): Promise<string[]>;
|
|
14
|
+
channelGetChannelId(): Promise<string | null | undefined>;
|
|
15
|
+
channelGetSubscriptionLists(): Promise<string[]>;
|
|
16
|
+
channelEditTagGroups(operations: Object[]): Promise<void>;
|
|
17
|
+
channelEditAttributes(operations: Object[]): Promise<void>;
|
|
18
|
+
channelEditSubscriptionLists(operations: Object[]): Promise<void>;
|
|
19
|
+
pushSetUserNotificationsEnabled(enabled: boolean): Promise<void>;
|
|
20
|
+
pushIsUserNotificationsEnabled(): Promise<boolean>;
|
|
21
|
+
pushEnableUserNotifications(options?: Object): Promise<boolean>;
|
|
22
|
+
pushGetNotificationStatus(): Promise<Object>;
|
|
23
|
+
pushGetRegistrationToken(): Promise<string | null | undefined>;
|
|
24
|
+
pushGetActiveNotifications(): Promise<Object[]>;
|
|
25
|
+
pushClearNotifications(): void;
|
|
26
|
+
pushClearNotification(identifier: string): void;
|
|
27
|
+
pushIosSetForegroundPresentationOptions(options: string[]): Promise<void>;
|
|
28
|
+
pushIosSetNotificationOptions(options: string[]): Promise<void>;
|
|
29
|
+
pushIosSetAutobadgeEnabled(enabled: boolean): Promise<void>;
|
|
30
|
+
pushIosIsAutobadgeEnabled(): Promise<boolean>;
|
|
31
|
+
pushIosSetBadgeNumber(badgeNumber: number): Promise<void>;
|
|
32
|
+
pushIosGetBadgeNumber(): Promise<number>;
|
|
33
|
+
pushIosIsOverridePresentationOptionsEnabled(enabled: boolean): void;
|
|
34
|
+
pushIosOverridePresentationOptions(requestId: string, options?: string[]): void;
|
|
35
|
+
pushIosGetAuthorizedNotificationSettings(): Promise<string[]>;
|
|
36
|
+
pushIosGetAuthorizedNotificationStatus(): Promise<string>;
|
|
37
|
+
pushAndroidIsNotificationChannelEnabled(channel: string): Promise<boolean>;
|
|
38
|
+
pushAndroidSetNotificationConfig(config: Object): void;
|
|
39
|
+
pushAndroidIsOverrideForegroundDisplayEnabled(enabled: boolean): void;
|
|
40
|
+
pushAndroidOverrideForegroundDisplay(requestId: string, shouldDisplay: boolean): void;
|
|
41
|
+
contactIdentify(namedUser: string): Promise<void>;
|
|
42
|
+
contactReset(): Promise<void>;
|
|
43
|
+
contactNotifyRemoteLogin(): Promise<void>;
|
|
44
|
+
contactGetNamedUserId(): Promise<string | null | undefined>;
|
|
45
|
+
contactGetSubscriptionLists(): Promise<Object>;
|
|
46
|
+
contactEditTagGroups(operations: Object[]): Promise<void>;
|
|
47
|
+
contactEditAttributes(operations: Object[]): Promise<void>;
|
|
48
|
+
contactEditSubscriptionLists(operations: Object[]): Promise<void>;
|
|
49
|
+
analyticsTrackScreen(screen?: string): Promise<void>;
|
|
50
|
+
analyticsAssociateIdentifier(key: string, identifier?: string): Promise<void>;
|
|
51
|
+
addCustomEvent(event: Object): Promise<void>;
|
|
52
|
+
analyticsGetSessionId(): Promise<string>;
|
|
53
|
+
actionRun(action: Object): Promise<Object | Error>;
|
|
54
|
+
privacyManagerSetEnabledFeatures(features: string[]): Promise<void>;
|
|
55
|
+
privacyManagerGetEnabledFeatures(): Promise<string[]>;
|
|
56
|
+
privacyManagerEnableFeature(features: string[]): Promise<void>;
|
|
57
|
+
privacyManagerDisableFeature(features: string[]): Promise<void>;
|
|
58
|
+
privacyManagerIsFeatureEnabled(features: string[]): Promise<void>;
|
|
59
|
+
inAppSetDisplayInterval(milliseconds: number): Promise<void>;
|
|
60
|
+
inAppGetDisplayInterval(): Promise<number>;
|
|
61
|
+
inAppSetPaused(paused: boolean): Promise<void>;
|
|
62
|
+
inAppIsPaused(): Promise<boolean>;
|
|
63
|
+
inAppResendPendingEmbeddedEvent(): void;
|
|
64
|
+
messageCenterGetUnreadCount(): Promise<number>;
|
|
65
|
+
messageCenterDismiss(): Promise<void>;
|
|
66
|
+
messageCenterDisplay(messageId?: string): Promise<void>;
|
|
67
|
+
messageCenterGetMessages(): Promise<Object[]>;
|
|
68
|
+
messageCenterDeleteMessage(messageId: string): Promise<void>;
|
|
69
|
+
messageCenterMarkMessageRead(messageId: string): Promise<void>;
|
|
70
|
+
messageCenterRefresh(): Promise<void>;
|
|
71
|
+
messageCenterSetAutoLaunchDefaultMessageCenter(enabled: boolean): void;
|
|
72
|
+
messageCenterShowMessageCenter(messageId?: string): Promise<void>;
|
|
73
|
+
messageCenterShowMessageView(messageId: string): Promise<void>;
|
|
74
|
+
preferenceCenterDisplay(preferenceCenterId: string): Promise<void>;
|
|
75
|
+
preferenceCenterGetConfig(preferenceCenterId: string): Promise<Object>;
|
|
76
|
+
preferenceCenterAutoLaunchDefaultPreferenceCenter(preferenceCenterId: string, autoLaunch: boolean): void;
|
|
77
|
+
localeSetLocaleOverride(localeIdentifier: string): Promise<void>;
|
|
78
|
+
localeGetLocale(): Promise<string>;
|
|
79
|
+
localeClearLocaleOverride(): Promise<void>;
|
|
80
|
+
featureFlagManagerFlag(flagName: string, useResultCache: boolean): Promise<Object>;
|
|
81
|
+
featureFlagManagerTrackInteraction(flag: Object): Promise<void>;
|
|
82
|
+
featureFlagManagerResultCacheGetFlag(flagName: string): Promise<Object>;
|
|
83
|
+
featureFlagManagerResultCacheSetFlag(flag: Object, ttl: number): Promise<void>;
|
|
84
|
+
featureFlagManagerResultCacheRemoveFlag(flagName: string): Promise<void>;
|
|
85
|
+
liveActivityListAll(): Promise<Object>;
|
|
86
|
+
liveActivityList(request: Object): Promise<Object>;
|
|
87
|
+
liveActivityStart(request: Object): Promise<Object>;
|
|
88
|
+
liveActivityUpdate(request: Object): Promise<void>;
|
|
89
|
+
liveActivityEnd(request: Object): Promise<void>;
|
|
90
|
+
liveUpdateListAll(): Promise<Object>;
|
|
91
|
+
liveUpdateList(request: Object): Promise<Object>;
|
|
92
|
+
liveUpdateStart(request: Object): Promise<void>;
|
|
93
|
+
liveUpdateUpdate(request: Object): Promise<void>;
|
|
94
|
+
liveUpdateEnd(request: Object): Promise<void>;
|
|
95
|
+
liveUpdateClearAll(): Promise<void>;
|
|
96
|
+
}
|
|
97
|
+
declare const _default: Spec;
|
|
98
|
+
export default _default;
|
|
99
|
+
//# sourceMappingURL=NativeRNAirship.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeRNAirship.d.ts","sourceRoot":"","sources":["../../../../src/NativeRNAirship.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { HostComponent, ViewProps } from 'react-native';
|
|
2
|
+
interface NativeProps extends ViewProps {
|
|
3
|
+
embeddedId: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: HostComponent<NativeProps>;
|
|
6
|
+
export default _default;
|
|
7
|
+
//# sourceMappingURL=RNAirshipEmbeddedViewNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RNAirshipEmbeddedViewNativeComponent.d.ts","sourceRoot":"","sources":["../../../../src/RNAirshipEmbeddedViewNativeComponent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE7D,UAAU,WAAY,SAAQ,SAAS;IACrC,UAAU,EAAE,MAAM,CAAC;CACpB;wBAE8E,aAAa,CAAC,WAAW,CAAC;AAAzG,wBAA0G"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { HostComponent, ViewProps } from 'react-native';
|
|
2
|
+
import type { BubblingEventHandler } from 'react-native/Libraries/Types/CodegenTypes';
|
|
3
|
+
type MessageLoadStartedEvent = Readonly<{
|
|
4
|
+
messageId: string;
|
|
5
|
+
}>;
|
|
6
|
+
type MessageLoadFinishedEvent = Readonly<{
|
|
7
|
+
messageId: string;
|
|
8
|
+
}>;
|
|
9
|
+
type MessageLoadErrorEvent = Readonly<{
|
|
10
|
+
messageId: string;
|
|
11
|
+
retryable: boolean;
|
|
12
|
+
error: string;
|
|
13
|
+
}>;
|
|
14
|
+
type MessageClosedEvent = Readonly<{
|
|
15
|
+
messageId: string;
|
|
16
|
+
}>;
|
|
17
|
+
interface NativeProps extends ViewProps {
|
|
18
|
+
messageId: string;
|
|
19
|
+
onLoadStarted: BubblingEventHandler<MessageLoadStartedEvent, 'topLoadStarted'>;
|
|
20
|
+
onLoadFinished: BubblingEventHandler<MessageLoadFinishedEvent, 'topLoadFinished'>;
|
|
21
|
+
onLoadError: BubblingEventHandler<MessageLoadErrorEvent, 'topLoadError'>;
|
|
22
|
+
onClose: BubblingEventHandler<MessageClosedEvent, 'topClose'>;
|
|
23
|
+
}
|
|
24
|
+
declare const _default: HostComponent<NativeProps>;
|
|
25
|
+
export default _default;
|
|
26
|
+
//# sourceMappingURL=RNAirshipMessageViewNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RNAirshipMessageViewNativeComponent.d.ts","sourceRoot":"","sources":["../../../../src/RNAirshipMessageViewNativeComponent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,KAAK,EACV,oBAAoB,EAErB,MAAM,2CAA2C,CAAC;AAEnD,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC,CAAC;AAEH,KAAK,wBAAwB,GAAG,QAAQ,CAAC;IACvC,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC,CAAC;AAEH,KAAK,qBAAqB,GAAG,QAAQ,CAAC;IACpC,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC,CAAC;AAEH,KAAK,kBAAkB,GAAG,QAAQ,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC,CAAC;AAEH,UAAU,WAAY,SAAQ,SAAS;IACrC,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,oBAAoB,CACjC,uBAAuB,EACvB,gBAAgB,CACjB,CAAC;IACF,cAAc,EAAE,oBAAoB,CAClC,wBAAwB,EACxB,iBAAiB,CAClB,CAAC;IACF,WAAW,EAAE,oBAAoB,CAAC,qBAAqB,EAAE,cAAc,CAAC,CAAC;IACzE,OAAO,EAAE,oBAAoB,CAAC,kBAAkB,EAAE,UAAU,CAAC,CAAC;CAC/D;wBAE6E,aAAa,CAAC,WAAW,CAAC;AAAxG,wBAAyG"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { SubscriptionScope } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Enum of internal scoped subscription list update type.
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
declare enum ScopedSubscriptionListOperationAction {
|
|
7
|
+
subscribe = "subscribe",
|
|
8
|
+
unsubscribe = "unsubscribe"
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Scoped subscription list operation.
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export interface ScopedSubscriptionListOperation {
|
|
15
|
+
/**
|
|
16
|
+
* The subscription list identifier.
|
|
17
|
+
*/
|
|
18
|
+
listId: string;
|
|
19
|
+
/**
|
|
20
|
+
* The subscription list update type.
|
|
21
|
+
*/
|
|
22
|
+
action: ScopedSubscriptionListOperationAction;
|
|
23
|
+
/**
|
|
24
|
+
* The subscription scope to update.
|
|
25
|
+
*/
|
|
26
|
+
scope: SubscriptionScope;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Scoped subscription list editor.
|
|
30
|
+
*/
|
|
31
|
+
export declare class ScopedSubscriptionListEditor {
|
|
32
|
+
onApply: (operations: ScopedSubscriptionListOperation[]) => Promise<void>;
|
|
33
|
+
operations: ScopedSubscriptionListOperation[];
|
|
34
|
+
/**
|
|
35
|
+
*/
|
|
36
|
+
constructor(onApply: (operations: ScopedSubscriptionListOperation[]) => Promise<void>);
|
|
37
|
+
/**
|
|
38
|
+
* Subscribes to a list in the given scope.
|
|
39
|
+
*
|
|
40
|
+
* @param subscriptionListId The subscription list identifier.
|
|
41
|
+
* @param scope The subscription scope to subscribe.
|
|
42
|
+
* @return The editor instance.
|
|
43
|
+
*/
|
|
44
|
+
subscribe(subscriptionListId: string, scope: SubscriptionScope): ScopedSubscriptionListEditor;
|
|
45
|
+
/**
|
|
46
|
+
* Unsubscribe from a list.
|
|
47
|
+
*
|
|
48
|
+
* @param subscriptionListId The subscription list identifier.
|
|
49
|
+
* @param scope The subscription scope to unsubscribe.
|
|
50
|
+
* @return The editor instance.
|
|
51
|
+
*/
|
|
52
|
+
unsubscribe(subscriptionListId: string, scope: SubscriptionScope): ScopedSubscriptionListEditor;
|
|
53
|
+
/**
|
|
54
|
+
* Applies subscription list changes.
|
|
55
|
+
*
|
|
56
|
+
*/
|
|
57
|
+
apply(): Promise<void>;
|
|
58
|
+
}
|
|
59
|
+
export {};
|
|
60
|
+
//# sourceMappingURL=ScopedSubscriptionListEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScopedSubscriptionListEditor.d.ts","sourceRoot":"","sources":["../../../../src/ScopedSubscriptionListEditor.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAE5C;;;GAGG;AACH,aAAK,qCAAqC;IACxC,SAAS,cAAc;IACvB,WAAW,gBAAgB;CAC5B;AAED;;;GAGG;AACH,MAAM,WAAW,+BAA+B;IAC9C;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,MAAM,EAAE,qCAAqC,CAAC;IAC9C;;OAEG;IACH,KAAK,EAAE,iBAAiB,CAAC;CAC1B;AAED;;GAEG;AACH,qBAAa,4BAA4B;IACvC,OAAO,EAAE,CACP,UAAU,EAAE,+BAA+B,EAAE,KAC1C,OAAO,CAAC,IAAI,CAAC,CAAC;IACnB,UAAU,EAAE,+BAA+B,EAAE,CAAC;IAE9C;OACG;gBAED,OAAO,EAAE,CACP,UAAU,EAAE,+BAA+B,EAAE,KAC1C,OAAO,CAAC,IAAI,CAAC;IAMpB;;;;;;OAMG;IACH,SAAS,CAAC,kBAAkB,EAAE,MAAM,EAAE,KAAK,EAAE,iBAAiB,GAAG,4BAA4B;IAU7F;;;;;;OAMG;IACH,WAAW,CAAC,kBAAkB,EAAE,MAAM,EAAE,KAAK,EAAE,iBAAiB,GAAG,4BAA4B;IAU/F;;;OAGG;IACH,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAGvB"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enum of internal subscription list update type.
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
declare enum SubscriptionListOperationAction {
|
|
6
|
+
subscribe = "subscribe",
|
|
7
|
+
unsubscribe = "unsubscribe"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Subscription list operation.
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export interface SubscriptionListOperation {
|
|
14
|
+
/**
|
|
15
|
+
* The subscription list identifier.
|
|
16
|
+
*/
|
|
17
|
+
listId: string;
|
|
18
|
+
/**
|
|
19
|
+
* The subscription list update type.
|
|
20
|
+
*/
|
|
21
|
+
action: SubscriptionListOperationAction;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Subscription list editor.
|
|
25
|
+
*/
|
|
26
|
+
export declare class SubscriptionListEditor {
|
|
27
|
+
private readonly onApply;
|
|
28
|
+
private operations;
|
|
29
|
+
constructor(onApply: (subscriptionListUpdates: SubscriptionListOperation[]) => Promise<void>);
|
|
30
|
+
/**
|
|
31
|
+
* Subscribes to a list.
|
|
32
|
+
*
|
|
33
|
+
* @param subscriptionListId The subscription list identifier.
|
|
34
|
+
* @return The editor instance.
|
|
35
|
+
*/
|
|
36
|
+
subscribe(subscriptionListId: string): SubscriptionListEditor;
|
|
37
|
+
/**
|
|
38
|
+
* Unsubscribe from a list.
|
|
39
|
+
*
|
|
40
|
+
* @param subscriptionListId The subscription list identifier.
|
|
41
|
+
* @return The editor instance.
|
|
42
|
+
*/
|
|
43
|
+
unsubscribe(subscriptionListId: string): SubscriptionListEditor;
|
|
44
|
+
/**
|
|
45
|
+
* Applies subscription list changes.
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
apply(): Promise<void>;
|
|
49
|
+
}
|
|
50
|
+
export {};
|
|
51
|
+
//# sourceMappingURL=SubscriptionListEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SubscriptionListEditor.d.ts","sourceRoot":"","sources":["../../../../src/SubscriptionListEditor.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,aAAK,+BAA+B;IAClC,SAAS,cAAc;IACvB,WAAW,gBAAgB;CAC5B;AAED;;;GAGG;AACH,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,MAAM,EAAE,+BAA+B,CAAC;CACzC;AAED;;GAEG;AACH,qBAAa,sBAAsB;IAI/B,OAAO,CAAC,QAAQ,CAAC,OAAO;IAH1B,OAAO,CAAC,UAAU,CAAmC;gBAGlC,OAAO,EAAE,CACxB,uBAAuB,EAAE,yBAAyB,EAAE,KACjD,OAAO,CAAC,IAAI,CAAC;IAGpB;;;;;OAKG;IACH,SAAS,CAAC,kBAAkB,EAAE,MAAM,GAAG,sBAAsB;IAS7D;;;;;OAKG;IACH,WAAW,CAAC,kBAAkB,EAAE,MAAM,GAAG,sBAAsB;IAS/D;;;OAGG;IACH,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAGvB"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tag operation.
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
export interface TagOperation {
|
|
6
|
+
/**
|
|
7
|
+
* The operation name
|
|
8
|
+
*/
|
|
9
|
+
operationType: string;
|
|
10
|
+
/**
|
|
11
|
+
* An array of tags.
|
|
12
|
+
*/
|
|
13
|
+
tags: string[];
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Editor for device tags.
|
|
17
|
+
*/
|
|
18
|
+
export declare class TagEditor {
|
|
19
|
+
onApply: (operations: TagOperation[]) => Promise<void>;
|
|
20
|
+
operations: TagOperation[];
|
|
21
|
+
/**
|
|
22
|
+
* TagEditor constructor
|
|
23
|
+
*
|
|
24
|
+
* @hidden
|
|
25
|
+
* @param onApply The apply function
|
|
26
|
+
*/
|
|
27
|
+
constructor(onApply: (operations: TagOperation[]) => Promise<void>);
|
|
28
|
+
/**
|
|
29
|
+
* Adds tags to a channel.
|
|
30
|
+
*
|
|
31
|
+
* @param tags Tags to add.
|
|
32
|
+
* @return The tag editor instance.
|
|
33
|
+
*/
|
|
34
|
+
addTags(tags: string[]): TagEditor;
|
|
35
|
+
/**
|
|
36
|
+
* Removes tags from the channel.
|
|
37
|
+
*
|
|
38
|
+
* @param tags Tags to remove.
|
|
39
|
+
* @return The tag editor instance.
|
|
40
|
+
*/
|
|
41
|
+
removeTags(tags: string[]): TagEditor;
|
|
42
|
+
/**
|
|
43
|
+
* Applies the tag changes.
|
|
44
|
+
*/
|
|
45
|
+
apply(): Promise<void>;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=TagEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagEditor.d.ts","sourceRoot":"","sources":["../../../../src/TagEditor.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB;AAED;;GAEG;AACH,qBAAa,SAAS;IACpB,OAAO,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IACvD,UAAU,EAAE,YAAY,EAAE,CAAC;IAE3B;;;;;OAKG;gBACS,OAAO,EAAE,CAAC,UAAU,EAAE,YAAY,EAAE,KAAK,OAAO,CAAC,IAAI,CAAC;IAKlE;;;;;OAKG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,SAAS;IAMlC;;;;;OAKG;IACH,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,SAAS;IAMrC;;OAEG;IACH,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAGvB"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tag group operation.
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
export interface TagGroupOperation {
|
|
6
|
+
/**
|
|
7
|
+
* The operation name
|
|
8
|
+
*/
|
|
9
|
+
operationType: string;
|
|
10
|
+
/**
|
|
11
|
+
* The tag group name
|
|
12
|
+
*/
|
|
13
|
+
group: string;
|
|
14
|
+
/**
|
|
15
|
+
* An array of tags.
|
|
16
|
+
*/
|
|
17
|
+
tags: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Editor for tag groups.
|
|
21
|
+
*/
|
|
22
|
+
export declare class TagGroupEditor {
|
|
23
|
+
onApply: (operations: TagGroupOperation[]) => Promise<void>;
|
|
24
|
+
operations: TagGroupOperation[];
|
|
25
|
+
/**
|
|
26
|
+
* TagGroupEditor constructor
|
|
27
|
+
*
|
|
28
|
+
* @hidden
|
|
29
|
+
* @param onApply The apply function
|
|
30
|
+
*/
|
|
31
|
+
constructor(onApply: (operations: TagGroupOperation[]) => Promise<void>);
|
|
32
|
+
/**
|
|
33
|
+
* Adds tags to a tag group.
|
|
34
|
+
*
|
|
35
|
+
* @param tagGroup The tag group.
|
|
36
|
+
* @param tags Tags to add.
|
|
37
|
+
* @return The tag group editor instance.
|
|
38
|
+
*/
|
|
39
|
+
addTags(group: string, tags: string[]): TagGroupEditor;
|
|
40
|
+
/**
|
|
41
|
+
* Removes tags from the tag group.
|
|
42
|
+
*
|
|
43
|
+
* @param tagGroup The tag group.
|
|
44
|
+
* @param tags Tags to remove.
|
|
45
|
+
* @return The tag group editor instance.
|
|
46
|
+
*/
|
|
47
|
+
removeTags(group: string, tags: string[]): TagGroupEditor;
|
|
48
|
+
/**
|
|
49
|
+
* Overwrite the current set of tags on the Tag Group.
|
|
50
|
+
*
|
|
51
|
+
* @param tagGroup The tag group.
|
|
52
|
+
* @param tags Tags to set.
|
|
53
|
+
* @return The tag group editor instance.
|
|
54
|
+
*/
|
|
55
|
+
setTags(group: string, tags: Array<string>): TagGroupEditor;
|
|
56
|
+
/**
|
|
57
|
+
* Applies the tag changes.
|
|
58
|
+
*/
|
|
59
|
+
apply(): Promise<void>;
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=TagGroupEditor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TagGroupEditor.d.ts","sourceRoot":"","sources":["../../../../src/TagGroupEditor.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,EAAE,CAAC;CAChB;AAED;;GAEG;AACH,qBAAa,cAAc;IACzB,OAAO,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC5D,UAAU,EAAE,iBAAiB,EAAE,CAAC;IAEhC;;;;;OAKG;gBACS,OAAO,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,KAAK,OAAO,CAAC,IAAI,CAAC;IAKvE;;;;;;OAMG;IACH,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,cAAc;IAMtD;;;;;;OAMG;IACH,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,cAAc;IAMzD;;;;;;OAMG;IACH,OAAO,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,cAAc;IAM3D;;OAEG;IACH,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAGvB"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SDK event emitter.
|
|
3
|
+
*
|
|
4
|
+
* @hidden
|
|
5
|
+
*/
|
|
6
|
+
export declare class UAEventEmitter {
|
|
7
|
+
private readonly nativeModule;
|
|
8
|
+
private eventEmitter;
|
|
9
|
+
private listeners;
|
|
10
|
+
constructor(nativeModule: any);
|
|
11
|
+
removeListener(eventType: string, listener: (...args: any[]) => any): void;
|
|
12
|
+
addListener(eventType: string, listener: (...args: any[]) => any): void;
|
|
13
|
+
removeAllListeners(eventType: string): void;
|
|
14
|
+
private dispatchEvents;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A listener subscription.
|
|
18
|
+
*/
|
|
19
|
+
export declare class Subscription {
|
|
20
|
+
private readonly onRemove;
|
|
21
|
+
constructor(onRemove: () => void);
|
|
22
|
+
/**
|
|
23
|
+
* Removes the listener.
|
|
24
|
+
*/
|
|
25
|
+
remove(): void;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=UAEventEmitter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UAEventEmitter.d.ts","sourceRoot":"","sources":["../../../../src/UAEventEmitter.ts"],"names":[],"mappings":"AAIA;;;;GAIG;AACH,qBAAa,cAAc;IAIb,OAAO,CAAC,QAAQ,CAAC,YAAY;IAHzC,OAAO,CAAC,YAAY,CAAqB;IACzC,OAAO,CAAC,SAAS,CAA0D;gBAE9C,YAAY,EAAE,GAAG;IAiB9C,cAAc,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,GAAG,IAAI;IAQ1E,WAAW,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,GAAG,IAAI;IASvE,kBAAkB,CAAC,SAAS,EAAE,MAAM;YAItB,cAAc;CAkB7B;AAED;;GAEG;AACH,qBAAa,YAAY;IACX,OAAO,CAAC,QAAQ,CAAC,QAAQ;gBAAR,QAAQ,EAAE,MAAM,IAAI;IACjD;;OAEG;IACI,MAAM,IAAI,IAAI;CAGtB"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AirshipRoot } from './AirshipRoot';
|
|
2
|
+
export { AirshipRoot, AirshipRootIOS } from './AirshipRoot';
|
|
3
|
+
export { AirshipActions } from './AirshipActions';
|
|
4
|
+
export { AirshipAnalytics } from './AirshipAnalytics';
|
|
5
|
+
export { AirshipChannel } from './AirshipChannel';
|
|
6
|
+
export { AirshipContact } from './AirshipContact';
|
|
7
|
+
export { AirshipInApp } from './AirshipInApp';
|
|
8
|
+
export { AirshipLocale } from './AirshipLocale';
|
|
9
|
+
export { AirshipMessageCenter } from './AirshipMessageCenter';
|
|
10
|
+
export { AirshipPreferenceCenter } from './AirshipPreferenceCenter';
|
|
11
|
+
export { AirshipPrivacyManager } from './AirshipPrivacyManager';
|
|
12
|
+
export { AirshipFeatureFlagManager } from './AirshipFeatureFlagManager';
|
|
13
|
+
export { AirshipLiveActivityManager } from './AirshipLiveActivityManager';
|
|
14
|
+
export { AirshipPush, AirshipPushAndroid, AirshipPushIOS } from './AirshipPush';
|
|
15
|
+
export { SubscriptionListEditor } from './SubscriptionListEditor';
|
|
16
|
+
export { TagGroupEditor } from './TagGroupEditor';
|
|
17
|
+
export { ScopedSubscriptionListEditor } from './ScopedSubscriptionListEditor';
|
|
18
|
+
export { AttributeEditor } from './AttributeEditor';
|
|
19
|
+
export * from './types';
|
|
20
|
+
export * from './MessageView';
|
|
21
|
+
export * from './AirshipEmbeddedView';
|
|
22
|
+
export { Subscription } from './UAEventEmitter';
|
|
23
|
+
declare const Airship: AirshipRoot;
|
|
24
|
+
export default Airship;
|
|
25
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAE1E,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AAEtC,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAWhD,QAAA,MAAM,OAAO,aAAgB,CAAC;AAC9B,eAAe,OAAO,CAAC"}
|