@ansight/capacitor 1.4.0-preview.3 → 1.4.0-preview.5
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/AnsightCapacitor.podspec +1 -1
- package/Package.swift +1 -1
- package/android/build.gradle +2 -2
- package/dist/esm/session-properties.d.ts +1 -1
- package/dist/esm/session-properties.js +1 -1
- package/dist/plugin.cjs.js +1 -1
- package/dist/plugin.js +1 -1
- package/dist/standalone.js +1 -1
- package/package.json +1 -1
package/AnsightCapacitor.podspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = 'AnsightCapacitor'
|
|
3
|
-
s.version = '1.4.0-preview.
|
|
3
|
+
s.version = '1.4.0-preview.5'
|
|
4
4
|
s.summary = 'Capacitor bridge for the Ansight mobile observability SDK.'
|
|
5
5
|
s.license = { :type => 'Ansight SDK Source-Available License', :file => 'LICENSE' }
|
|
6
6
|
s.homepage = 'https://github.com/ansight-ai/ansight-sdk'
|
package/Package.swift
CHANGED
|
@@ -7,7 +7,7 @@ let ansightSdkDependency: Package.Dependency = useLocalAnsightSdk
|
|
|
7
7
|
? .package(name: "AnsightSDK", path: "../ios")
|
|
8
8
|
: .package(
|
|
9
9
|
url: "https://github.com/ansight-ai/ansight-sdk.git",
|
|
10
|
-
exact: "1.4.0-preview.
|
|
10
|
+
exact: "1.4.0-preview.5"
|
|
11
11
|
)
|
|
12
12
|
let ansightTargetDependency: Target.Dependency = .product(
|
|
13
13
|
name: "Ansight",
|
package/android/build.gradle
CHANGED
|
@@ -49,6 +49,6 @@ android {
|
|
|
49
49
|
dependencies {
|
|
50
50
|
implementation project(":capacitor-android")
|
|
51
51
|
def ansightAndroidVersion =
|
|
52
|
-
findProperty("ansightAndroidVersion") ?: "1.4.0-preview.
|
|
53
|
-
implementation "ai.ansight:ansight-android:1.4.0-preview.
|
|
52
|
+
findProperty("ansightAndroidVersion") ?: "1.4.0-preview.5"
|
|
53
|
+
implementation "ai.ansight:ansight-android:1.4.0-preview.5"
|
|
54
54
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.
|
|
1
|
+
export declare const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.5";
|
|
2
2
|
export declare const COMPILED_CAPACITOR_CORE_VERSION = "8.4.2";
|
|
3
3
|
export declare const CAPACITOR_GROUP = "capacitor";
|
|
4
4
|
export declare const LOCALIZATION_GROUP = "localization";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.
|
|
1
|
+
export const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.5";
|
|
2
2
|
export const COMPILED_CAPACITOR_CORE_VERSION = "8.4.2";
|
|
3
3
|
export const CAPACITOR_GROUP = "capacitor";
|
|
4
4
|
export const LOCALIZATION_GROUP = "localization";
|
package/dist/plugin.cjs.js
CHANGED
|
@@ -1568,7 +1568,7 @@ function installBrowserNetworkCapture(capture, options = {}, sourcePrefix = "cap
|
|
|
1568
1568
|
};
|
|
1569
1569
|
}
|
|
1570
1570
|
|
|
1571
|
-
const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.
|
|
1571
|
+
const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.5";
|
|
1572
1572
|
const COMPILED_CAPACITOR_CORE_VERSION = "8.4.2";
|
|
1573
1573
|
const CAPACITOR_GROUP = "capacitor";
|
|
1574
1574
|
const LOCALIZATION_GROUP = "localization";
|
package/dist/plugin.js
CHANGED
|
@@ -1565,7 +1565,7 @@ var capacitorAnsight = (function (exports, core) {
|
|
|
1565
1565
|
};
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
|
-
const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.
|
|
1568
|
+
const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.5";
|
|
1569
1569
|
const COMPILED_CAPACITOR_CORE_VERSION = "8.4.2";
|
|
1570
1570
|
const CAPACITOR_GROUP = "capacitor";
|
|
1571
1571
|
const LOCALIZATION_GROUP = "localization";
|
package/dist/standalone.js
CHANGED
|
@@ -2206,7 +2206,7 @@
|
|
|
2206
2206
|
};
|
|
2207
2207
|
}
|
|
2208
2208
|
|
|
2209
|
-
const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.
|
|
2209
|
+
const ANSIGHT_CAPACITOR_SDK_VERSION = "1.4.0-preview.5";
|
|
2210
2210
|
const COMPILED_CAPACITOR_CORE_VERSION = "8.4.2";
|
|
2211
2211
|
const CAPACITOR_GROUP = "capacitor";
|
|
2212
2212
|
const LOCALIZATION_GROUP = "localization";
|
package/package.json
CHANGED