@ua/capacitor-airship 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
14
14
  s.ios.deployment_target = '14.0'
15
15
  s.dependency 'Capacitor'
16
16
  s.swift_version = '5.1'
17
- s.dependency "AirshipFrameworkProxy", "6.1.2"
17
+ s.dependency "AirshipFrameworkProxy", "6.2.0"
18
18
  end
@@ -56,8 +56,8 @@ repositories {
56
56
  }
57
57
 
58
58
  dependencies {
59
- def proxyVersion = '6.1.2'
60
- def airshipVersion = '17.8.0'
59
+ def proxyVersion = '6.2.0'
60
+ def airshipVersion = '17.8.1'
61
61
  def kotlinVersion = project.hasProperty('kotlinVersion') ? rootProject.ext.kotlinVersion : '1.8.20'
62
62
 
63
63
 
@@ -3,5 +3,5 @@
3
3
  package com.airship.capacitor
4
4
 
5
5
  object AirshipCapacitorVersion {
6
- var version = "1.2.0"
6
+ var version = "1.2.1"
7
7
  }
@@ -153,7 +153,7 @@ class AirshipPlugin : Plugin() {
153
153
  "inApp#getDisplayInterval" -> call.resolveResult(method) { proxy.inApp.getDisplayInterval() }
154
154
 
155
155
  // Analytics
156
- "analytics#trackScreen" -> call.resolveResult(method) { proxy.analytics.trackScreen(arg.optString()) }
156
+ "analytics#trackScreen" -> call.resolveResult(method) { proxy.analytics.trackScreen(arg.string) }
157
157
  "analytics#addCustomEvent" -> call.resolveResult(method) { proxy.analytics.addEvent(arg) }
158
158
  "analytics#associateIdentifier" -> {
159
159
  val associatedIdentifierArgs = arg.requireStringList()
@@ -168,7 +168,7 @@ class AirshipPlugin : Plugin() {
168
168
  JsonValue.wrapOpt(proxy.messageCenter.getMessages())
169
169
  }
170
170
  "messageCenter#dismiss" -> call.resolveResult(method) { proxy.messageCenter.dismiss() }
171
- "messageCenter#display" -> call.resolveResult(method) { proxy.messageCenter.display(arg.optString()) }
171
+ "messageCenter#display" -> call.resolveResult(method) { proxy.messageCenter.display(arg.string) }
172
172
  "messageCenter#showMessageView" -> call.resolveResult(method) { proxy.messageCenter.showMessageView(arg.requireString()) }
173
173
  "messageCenter#markMessageRead" -> call.resolveResult(method) { proxy.messageCenter.markMessageRead(arg.requireString()) }
174
174
  "messageCenter#deleteMessage" -> call.resolveResult(method) { proxy.messageCenter.deleteMessage(arg.requireString()) }
@@ -3,5 +3,5 @@
3
3
  import Foundation
4
4
 
5
5
  class AirshipCapacitorVersion {
6
- static let version = "1.2.0"
6
+ static let version = "1.2.1"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ua/capacitor-airship",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Airship capacitor plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",