Skip to content
Open
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# node files
dist
node_modules

# iOS files
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':capacitor-android')
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
implementation 'com.veriff:veriff-library:4.11.0'
implementation 'com.veriff:veriff-library:4.13.0'
testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
Expand Down
31 changes: 31 additions & 0 deletions dist/docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"api": {
"name": "VeriffPluginPlugin",
"slug": "veriffpluginplugin",
"docs": "",
"tags": [],
"methods": [
{
"name": "start",
"signature": "(params: { sessionUrl: string; configuration: { themeColor: string; }; }) => Promise<{ message: string; status: string; }>",
"parameters": [
{
"name": "params",
"docs": "",
"type": "{ sessionUrl: string; configuration: { themeColor: string; }; }"
}
],
"returns": "Promise<{ message: string; status: string; }>",
"tags": [],
"docs": "",
"complexTypes": [],
"slug": "start"
}
],
"properties": []
},
"interfaces": [],
"enums": [],
"typeAliases": [],
"pluginConfigs": []
}
11 changes: 11 additions & 0 deletions dist/esm/definitions.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export interface VeriffPluginPlugin {
start(params: {
sessionUrl: string;
configuration: {
themeColor: string;
};
}): Promise<{
message: string;
status: string;
}>;
}
2 changes: 2 additions & 0 deletions dist/esm/definitions.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/esm/definitions.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dist/esm/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import type { VeriffPluginPlugin } from './definitions';
declare const VeriffPlugin: VeriffPluginPlugin;
export * from './definitions';
export { VeriffPlugin };
7 changes: 7 additions & 0 deletions dist/esm/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/esm/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions dist/esm/web.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { WebPlugin } from '@capacitor/core';
import type { VeriffPluginPlugin } from './definitions';
export declare class VeriffPluginWeb extends WebPlugin implements VeriffPluginPlugin {
start(params: {
sessionUrl: string;
configuration: {
themeColor: string;
};
}): Promise<{
message: string;
status: string;
}>;
}
8 changes: 8 additions & 0 deletions dist/esm/web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/esm/web.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions dist/plugin.cjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/plugin.cjs.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions dist/plugin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/plugin.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@capacitor/android": "^3.0.0",
"@capacitor/core": "^3.0.0",
"@capacitor/android": "^4.0.0",
"@capacitor/core": "^4.0.0",
"@capacitor/docgen": "^0.0.18",
"@capacitor/ios": "^3.0.0",
"@capacitor/ios": "^4.0.0",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^1.0.1",
"@ionic/swiftlint-config": "^1.1.2",
Expand All @@ -60,7 +60,7 @@
"typescript": "~4.0.3"
},
"peerDependencies": {
"@capacitor/core": "^3.0.0"
"@capacitor/core": "^4.0.0"
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
Expand Down