diff --git a/android/build.gradle b/android/build.gradle index d98ef9e..8ca15c0 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -97,7 +97,7 @@ dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation "com.movableink.sdk:inked:2.0.1" + implementation "com.movableink.sdk:inked:2.1.0" } if (isNewArchitectureEnabled()) { diff --git a/package.json b/package.json index 68640c3..f15b996 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@movable/react-native-sdk", - "version": "2.0.2", + "version": "2.1.0", "description": "MovableInk React Native SDK", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/react-native-movable-ink.podspec b/react-native-movable-ink.podspec index cd44139..4886779 100644 --- a/react-native-movable-ink.podspec +++ b/react-native-movable-ink.podspec @@ -20,7 +20,7 @@ Pod::Spec.new do |s| # s.dependency "MovableInk" # Disable when testing local pod - s.dependency "MovableInk", "2.0.1" + s.dependency "MovableInk", "2.1.0" s.dependency "React-Core" diff --git a/src/index.tsx b/src/index.tsx index 9036b46..38c0a04 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -191,6 +191,7 @@ export enum Currency { export interface ProductSearchProperties { query: string; url?: string; + meta?: Record; } export interface ProductProperties { @@ -207,6 +208,7 @@ export interface ProductCategory { id: string; title?: string; url?: string; + meta?: Record; } export interface OrderCompletedProperties { @@ -222,6 +224,7 @@ export interface OrderCompletedProduct { url?: string; price?: number | string; quantity?: number; + meta?: Record; } export interface MovableInkInterface {