-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2eb3c50
commit 721e973
Showing
129 changed files
with
3,897 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## Added | ||
- hasWallet API function which provides a way to check if a Google Wallet exists on the device. | ||
- createWallet API function which allows a Google Wallet to be created on the device. | ||
|
||
## Changes | ||
- The `canProvision` API function now returns a `CanBeProvisioned` result for partially provisioned cards (instead of returning `AlreadyExistsInWallet`). | ||
- The `provision` API function can now complete provisioning of partially provisioned cards. | ||
- The canProvision API function now returns a CannotBeProvisioned.NoActiveWallet result if there is no Google Wallet on the device. | ||
- The canProvision API function now returns a CannotBeProvisioned.ApiError result if a Google Tap and Pay specific exception occurs. | ||
- The getSdkOutput API function now returns more fine grained error result types including a Failure.NoActiveWallet result if there is no Google Wallet on the device. | ||
- The provision API function now returns a Failure.NoActiveWallet result if there is no Google Wallet on the device. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
...ng.client.results/-can-provision-result/-cannot-be-provisioned/-api-error/-api-error.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!DOCTYPE html> | ||
<html class="no-js"> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> | ||
<title>ApiError</title> | ||
<link href="../../../../../images/logo-icon.svg" rel="icon" type="image/svg"> | ||
<script>var pathToRoot = "../../../../../";</script> | ||
<script>document.documentElement.classList.replace("no-js","js");</script> | ||
<script>const storage = localStorage.getItem("dokka-dark-mode") | ||
if (storage == null) { | ||
const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches | ||
if (osDarkSchemePreferred === true) { | ||
document.getElementsByTagName("html")[0].classList.add("theme-dark") | ||
} | ||
} else { | ||
const savedDarkMode = JSON.parse(storage) | ||
if(savedDarkMode === true) { | ||
document.getElementsByTagName("html")[0].classList.add("theme-dark") | ||
} | ||
} | ||
</script> | ||
<script type="text/javascript" src="https://unpkg.com/kotlin-playground@1/dist/playground.min.js" async="async"></script> | ||
<script type="text/javascript" src="../../../../../scripts/sourceset_dependencies.js" async="async"></script> | ||
<link href="../../../../../styles/style.css" rel="Stylesheet"> | ||
<link href="../../../../../styles/main.css" rel="Stylesheet"> | ||
<link href="../../../../../styles/prism.css" rel="Stylesheet"> | ||
<link href="../../../../../styles/logo-styles.css" rel="Stylesheet"> | ||
<link href="../../../../../styles/font-jb-sans-auto.css" rel="Stylesheet"> | ||
<script type="text/javascript" src="../../../../../scripts/clipboard.js" async="async"></script> | ||
<script type="text/javascript" src="../../../../../scripts/navigation-loader.js" async="async"></script> | ||
<script type="text/javascript" src="../../../../../scripts/platform-content-handler.js" async="async"></script> | ||
<script type="text/javascript" src="../../../../../scripts/main.js" defer="defer"></script> | ||
<script type="text/javascript" src="../../../../../scripts/prism.js" async="async"></script> | ||
<script type="text/javascript" src="../../../../../scripts/symbol-parameters-wrapper_deferred.js" defer="defer"></script> | ||
</head> | ||
<body> | ||
<div class="root"> | ||
<nav class="navigation" id="navigation-wrapper"> | ||
<div class="navigation--inner"> | ||
<div class="navigation-title"> | ||
<button class="menu-toggle" id="menu-toggle" type="button">toggle menu</button> | ||
<div class="library-name"> | ||
<a class="library-name--link" href="../../../../../index.html"> | ||
Adyen Google Wallet Provisioning SDK | ||
</a> | ||
</div> | ||
<div class="library-version"> | ||
0.2.0 </div> | ||
</div> | ||
<div class="filter-section" id="filter-section"> | ||
<button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":provisioning:dokkaHtml/release">Provisioning SDK</button> | ||
</div> | ||
</div> | ||
<div class="navigation-controls"> | ||
<button class="navigation-controls--btn navigation-controls--theme" id="theme-toggle-button" type="button">switch theme</button> | ||
<div class="navigation-controls--btn navigation-controls--search" id="searchBar" role="button">search in API</div> | ||
</div> | ||
</nav> | ||
<div id="container"> | ||
<div class="sidebar" id="leftColumn"> | ||
<div class="sidebar--inner" id="sideMenu"></div> | ||
</div> | ||
<div id="main"> | ||
<div class="main-content" data-page-type="member" id="content" pageIds="Adyen Google Wallet Provisioning SDK::com.adyen.issuing.mobile.provisioning.client.results/CanProvisionResult.CannotBeProvisioned.ApiError/ApiError/#kotlin.Int/PointingToDeclaration//-1836988822"> | ||
<div class="breadcrumbs"><a href="../../../../../index.html">Adyen Google Wallet Provisioning SDK</a><span class="delimiter">/</span><a href="../../../index.html">com.adyen.issuing.mobile.provisioning.client.results</a><span class="delimiter">/</span><a href="../../index.html">CanProvisionResult</a><span class="delimiter">/</span><a href="../index.html">CannotBeProvisioned</a><span class="delimiter">/</span><a href="index.html">ApiError</a><span class="delimiter">/</span><span class="current">ApiError</span></div> | ||
<div class="cover "> | ||
<h1 class="cover"><span>Api</span><wbr></wbr><span><span>Error</span></span></h1> | ||
</div> | ||
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":provisioning:dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">constructor</span><span class="token punctuation">(</span><span class="parameters "><span class="parameter ">statusCode<span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/package-list/kotlin/-int/index.html">Int</a></span></span><span class="token punctuation">)</span></div><h4 class="">Parameters</h4><div class="table"><div class="table-row" data-filterable-current=":provisioning:dokkaHtml/release" data-filterable-set=":provisioning:dokkaHtml/release"><div class="main-subrow keyValue "><div class=""><span class="inline-flex"><div><u><span>status</span><wbr></wbr><span><span>Code</span></span></u></div></span></div><div><div class="title"><p class="paragraph">The status code of the Tap and Pay API error.</p></div></div></div></div></div></div></div> | ||
</div> | ||
<div class="footer"> | ||
<span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2024 Copyright</span><span | ||
class="pull-right"><span>Generated by </span><a | ||
href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.