Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion react-native-movable-ink.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
3 changes: 3 additions & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export enum Currency {
export interface ProductSearchProperties {
query: string;
url?: string;
meta?: Record<string, string | number | boolean>;
}

export interface ProductProperties {
Expand All @@ -207,6 +208,7 @@ export interface ProductCategory {
id: string;
title?: string;
url?: string;
meta?: Record<string, string | number | boolean>;
}

export interface OrderCompletedProperties {
Expand All @@ -222,6 +224,7 @@ export interface OrderCompletedProduct {
url?: string;
price?: number | string;
quantity?: number;
meta?: Record<string, string | number | boolean>;
}

export interface MovableInkInterface {
Expand Down