@credify/credify-js
Advanced tools
Comparing version 1.1.21 to 1.1.22
@@ -65,4 +65,13 @@ import { AccountModel, OIDCInfoModel, ScopeModel } from "./model"; | ||
/** | ||
* Creates OpenID Connect URL for Offer | ||
* @param id | ||
* @param redirectUri | ||
* @param userId | ||
* @param offerCode | ||
* @param config | ||
*/ | ||
declare const offerUrl: (id: string, redirectUri: string, userId: string, offerCode: string, config: Config) => string; | ||
/** | ||
* Creates OpenID Connect URL | ||
* @param clientId | ||
* @param id | ||
* @param redirectUri | ||
@@ -72,3 +81,3 @@ * @param scopes | ||
*/ | ||
declare const oidcUrl: (clientId: string, redirectUri: string, scopes: string[], config: Config) => string; | ||
declare const oidcUrl: (id: string, redirectUri: string, scopes: string[], config: Config) => string; | ||
/** | ||
@@ -81,2 +90,2 @@ * Get User info after finish OpenId Connect flow | ||
declare const getUserInfo: (mnemonic: string, accessToken: string, config: Config) => Promise<object>; | ||
export { authorize, attachCustomClaims, getOIDCInfo, getOffer, getOffers, getAttachClaims, startLogin, oidcUrl, getOfferEvaluate, getUserInfo, }; | ||
export { authorize, attachCustomClaims, getOIDCInfo, getOffer, getOffers, getAttachClaims, startLogin, offerUrl, oidcUrl, getOfferEvaluate, getUserInfo, }; |
import { createAccount, login, getAccount } from "./domain/accountUseCase"; | ||
import { authorize, attachCustomClaims, getOIDCInfo, getOffer, getOffers, getAttachClaims, startLogin, oidcUrl, getOfferEvaluate, getUserInfo } from "./domain/appConnectUseCase"; | ||
import { authorize, attachCustomClaims, getOIDCInfo, getOffer, getOffers, getAttachClaims, startLogin, offerUrl, oidcUrl, getOfferEvaluate, getUserInfo } from "./domain/appConnectUseCase"; | ||
import { UserProfile, AccountModel, OIDCInfoModel, AttachedClaimsModel, ClaimProviderModel, ScopeModel, ClaimModel } from "./domain/model"; | ||
@@ -11,2 +11,2 @@ import { Wallet, createWallet, decryptBase64 } from "./hdwallet/wallet"; | ||
import { parseStringValueByType } from "./utils/commonUtil"; | ||
export { parseStringValueByType, createWallet, createAccount, getAccount, login, authorize, attachCustomClaims, getOIDCInfo, getOffer, getOffers, getAttachClaims, getOfferEvaluate, startLogin, oidcUrl, signature, configure, buildClaimData, getUserInfo, decryptBase64, UserProfile, ProfileEntity, Config, Wallet, AccountModel, OIDCInfoModel, Deal, DealCondition, DealClaim, AttachedClaimsModel, ClaimProviderModel, ScopeModel, ClaimModel, }; | ||
export { parseStringValueByType, createWallet, createAccount, getAccount, login, authorize, attachCustomClaims, getOIDCInfo, getOffer, getOffers, getAttachClaims, getOfferEvaluate, startLogin, offerUrl, oidcUrl, signature, configure, buildClaimData, getUserInfo, decryptBase64, UserProfile, ProfileEntity, Config, Wallet, AccountModel, OIDCInfoModel, Deal, DealCondition, DealClaim, AttachedClaimsModel, ClaimProviderModel, ScopeModel, ClaimModel, }; |
{ | ||
"name": "@credify/credify-js", | ||
"version": "1.1.21", | ||
"version": "1.1.22", | ||
"description": "Credify JS Library", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1104192
10174