@nexeraid/identity-schemas 1.12.10-dev → 1.12.12-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/declarations/src/customer.schema.d.ts +93 -0
- package/dist/declarations/src/customer.schema.d.ts.map +1 -0
- package/dist/declarations/src/identity/app-requests.schema.d.ts +10 -10
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts +1 -0
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +48 -8
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/kyc.schema.d.ts +4 -4
- package/dist/declarations/src/identity/txAuthData.schema.d.ts +6 -6
- package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
- package/dist/declarations/src/index.d.ts +2 -0
- package/dist/declarations/src/index.d.ts.map +1 -1
- package/dist/frontend-utilities.schema-16074d35.esm.js +2124 -0
- package/dist/frontend-utilities.schema-6b27c823.cjs.dev.js +2129 -0
- package/dist/frontend-utilities.schema-ff93910a.cjs.prod.js +2129 -0
- package/dist/{identity-api.schema-b8687390.esm.js → identity-api.schema-2ad5ade4.esm.js} +104 -9
- package/dist/{identity-api.schema-5844b144.cjs.prod.js → identity-api.schema-37b8d83d.cjs.dev.js} +127 -12
- package/dist/{identity-api.schema-f78923c5.cjs.dev.js → identity-api.schema-83828ec9.cjs.prod.js} +127 -12
- package/dist/nexeraid-identity-schemas.cjs.dev.js +52 -5
- package/dist/nexeraid-identity-schemas.cjs.prod.js +52 -5
- package/dist/nexeraid-identity-schemas.esm.js +3 -2
- package/dist/package.json +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +7 -5
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +7 -5
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +6 -2124
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +6 -2124
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2125
package/dist/{identity-api.schema-f78923c5.cjs.dev.js → identity-api.schema-83828ec9.cjs.prod.js}
RENAMED
|
@@ -2764,15 +2764,15 @@ var ExtendedTezosTxAuthInput = TezosTxAuthInput.and(zod.z.object({
|
|
|
2764
2764
|
userAddress: TezosImplicitAddress
|
|
2765
2765
|
}));
|
|
2766
2766
|
var AnyTxAuthInput = zod.z.union([ExtendedTxAuthInput, ExtendedTezosTxAuthInput]);
|
|
2767
|
-
var
|
|
2767
|
+
var ExtendedTxAuthDataSignatureResponse = GetTxAuthDataSignatureResponse.and(zod.z.object({
|
|
2768
2768
|
namespace: zod.z.literal(BlockchainNamespace.Enum.eip155),
|
|
2769
2769
|
userAddress: AddressSchema
|
|
2770
2770
|
}));
|
|
2771
|
-
var
|
|
2771
|
+
var ExtendedTezosTxAuthDataSignatureResponse = GetTezosTxAuthDataSignatureResponse.and(zod.z.object({
|
|
2772
2772
|
namespace: zod.z.literal(BlockchainNamespace.Enum.tezos),
|
|
2773
2773
|
userAddress: TezosImplicitAddress
|
|
2774
2774
|
}));
|
|
2775
|
-
var
|
|
2775
|
+
var AnyTxAuthDataSignatureResponse = zod.z.union([ExtendedTxAuthDataSignatureResponse, ExtendedTezosTxAuthDataSignatureResponse]);
|
|
2776
2776
|
|
|
2777
2777
|
var SimplifiedCredential = zod.z.object({
|
|
2778
2778
|
id: zod.z.string(),
|
|
@@ -2904,6 +2904,94 @@ var GetTxAuthSigResponseTezos = zod.z.object({
|
|
|
2904
2904
|
var HostRequestMessage = zod.z.union([GetCredentialsRequest, PolygonIdRequest, StartFlowRequest, IsVerifiedRequest, GetTxAuthSigRequest, GetTxAuthSigRequestTezos]);
|
|
2905
2905
|
var IdentityResponseMessage = zod.z.union([GetCredentialsResponse, PolygonIdResponse, IsVerifiedResponse, GetTxAuthSigResponse, GetTxAuthSigResponseTezos]);
|
|
2906
2906
|
|
|
2907
|
+
// Risk Score
|
|
2908
|
+
var RiskScoreTypes = ["Low", "Medium", "High", "No risk"];
|
|
2909
|
+
var RiskScoreType = zod.z["enum"](RiskScoreTypes);
|
|
2910
|
+
// Customer Type
|
|
2911
|
+
var CustomerTypes = ["Individual", "Company"];
|
|
2912
|
+
var CustomerType = zod.z["enum"](CustomerTypes);
|
|
2913
|
+
// KYC Onboarding Level
|
|
2914
|
+
var KycOnboardingLevels = ["Sign-up", "AML screening", "KYC", "Questionaire", "Onboarded"];
|
|
2915
|
+
var KycOnboardingLevel = zod.z["enum"](KycOnboardingLevels);
|
|
2916
|
+
// KYB Onboarding Level
|
|
2917
|
+
var KybOnboardingLevels = ["Onboarding", "KYB", "Onboarded"];
|
|
2918
|
+
var KybOnboardingLevel = zod.z["enum"](KybOnboardingLevels);
|
|
2919
|
+
var CustomerOnboardingLevels = [].concat(KycOnboardingLevels, KybOnboardingLevels);
|
|
2920
|
+
var CustomerOnboardingLevel = zod.z["enum"](CustomerOnboardingLevels);
|
|
2921
|
+
// Customer Status
|
|
2922
|
+
var CustomerStatuses = ["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"];
|
|
2923
|
+
|
|
2924
|
+
/** We changed the status names to be more user-friendly, that's why we need to preprocess the data
|
|
2925
|
+
* “Closed” -> “Terminated”
|
|
2926
|
+
* “Blocked” -> “Rejected”
|
|
2927
|
+
* “Under Investigation” -> “To be reviewed”
|
|
2928
|
+
*/
|
|
2929
|
+
var CustomerStatus = zod.z.preprocess(function (status) {
|
|
2930
|
+
switch (status) {
|
|
2931
|
+
case "Closed":
|
|
2932
|
+
return "Terminated";
|
|
2933
|
+
case "Blocked":
|
|
2934
|
+
return "Rejected";
|
|
2935
|
+
case "Under Investigation":
|
|
2936
|
+
return "To be reviewed";
|
|
2937
|
+
default:
|
|
2938
|
+
return status;
|
|
2939
|
+
}
|
|
2940
|
+
}, zod.z["enum"](CustomerStatuses));
|
|
2941
|
+
var BasicCustomerContactInformation = zod.z.object({
|
|
2942
|
+
email: zod.z.string().email(),
|
|
2943
|
+
phone: zod.z.string().min(4),
|
|
2944
|
+
twitter: zod.z.string(),
|
|
2945
|
+
discord: zod.z.string(),
|
|
2946
|
+
telegram: zod.z.string()
|
|
2947
|
+
}).partial();
|
|
2948
|
+
var CUSTOMERS_CHARTS = ["totalCustomers", "onboarded", "active", "dormant", "blocked", "topCountriesByCustomersCount", "customersRiskLevel", "customersByStatus", "trendOfStatusesOverTime"];
|
|
2949
|
+
var CustomersChartType = zod.z["enum"](CUSTOMERS_CHARTS);
|
|
2950
|
+
var CUSTOMER_TABLE_COLUMNS = ["selected", "wallets", "type", "country_of_residence", "risk_score", "onboarding_level", "open_alerts_count", "status", "date_onboarded"];
|
|
2951
|
+
var CustomerTableColumn = zod.z["enum"](CUSTOMER_TABLE_COLUMNS);
|
|
2952
|
+
var CUSTOMER_AUTOMATION_REASONS = {
|
|
2953
|
+
"rule-engine": {
|
|
2954
|
+
fail: "Rules engine verification failed",
|
|
2955
|
+
pass: "Rules engine verification passed"
|
|
2956
|
+
},
|
|
2957
|
+
kyc: {
|
|
2958
|
+
green: {
|
|
2959
|
+
"final": "Passed KYC"
|
|
2960
|
+
},
|
|
2961
|
+
yellow: {
|
|
2962
|
+
retry: "User rejected by the KYC provider with possibility to retry",
|
|
2963
|
+
fail: "User rejected by the KYC provider"
|
|
2964
|
+
},
|
|
2965
|
+
red: {
|
|
2966
|
+
retry: "User rejected by the KYC provider with possibility to retry",
|
|
2967
|
+
fail: "User rejected by the KYC provider"
|
|
2968
|
+
}
|
|
2969
|
+
},
|
|
2970
|
+
kyb: {
|
|
2971
|
+
green: {
|
|
2972
|
+
"final": "Passed KYB"
|
|
2973
|
+
},
|
|
2974
|
+
yellow: {
|
|
2975
|
+
retry: "User rejected by the KYB provider with possibility to retry",
|
|
2976
|
+
fail: "User rejected by the KYB provider"
|
|
2977
|
+
},
|
|
2978
|
+
red: {
|
|
2979
|
+
retry: "User rejected by the KYB provider with possibility to retry",
|
|
2980
|
+
fail: "User rejected by the KYB provider"
|
|
2981
|
+
},
|
|
2982
|
+
beneficiaryOnToBeReviewState: "One or more beneficiaries are on 'To be reviewed' state"
|
|
2983
|
+
},
|
|
2984
|
+
"aml-screening": {
|
|
2985
|
+
fail: "AML screening hits received during onboarding",
|
|
2986
|
+
ongoingMonitoringFail: "AML screening hits received during ongoing monitoring",
|
|
2987
|
+
pass: "Passed AML screening"
|
|
2988
|
+
},
|
|
2989
|
+
offchain_zkp: {
|
|
2990
|
+
fail: "Offchain ZKP verification failed",
|
|
2991
|
+
pass: "Offchain ZKP verification passed"
|
|
2992
|
+
}
|
|
2993
|
+
};
|
|
2994
|
+
|
|
2907
2995
|
var AuthSession = zod.z.object({
|
|
2908
2996
|
// JWT token containing user authentication data
|
|
2909
2997
|
// Generated by the Identity-api using the IdentityWidgetAccessToken_NEW schema
|
|
@@ -2943,7 +3031,10 @@ var TrxSignatureGatingRequest = zod.z.object({
|
|
|
2943
3031
|
input: AnyTxAuthInput
|
|
2944
3032
|
})
|
|
2945
3033
|
});
|
|
2946
|
-
var
|
|
3034
|
+
var GetCustomerStatusRequest = zod.z.object({
|
|
3035
|
+
type: zod.z.literal("getCustomerStatusRequest")
|
|
3036
|
+
});
|
|
3037
|
+
var IdentitySdkMessage = zod.z.union([AppConfigRequest, WalletUpdated, WalletSignResponse, TransactionResponse, TrxSignatureGatingRequest, GetCustomerStatusRequest]);
|
|
2947
3038
|
var IdentitySdkMessageWithIdentifier = zod.z.intersection(IdentitySdkMessage, zod.z.object({
|
|
2948
3039
|
identifier: zod.z.string()
|
|
2949
3040
|
}));
|
|
@@ -2966,11 +3057,15 @@ var WalletSignRequest = zod.z.object({
|
|
|
2966
3057
|
message: zod.z.string()
|
|
2967
3058
|
})
|
|
2968
3059
|
});
|
|
2969
|
-
var
|
|
2970
|
-
type: zod.z.literal("
|
|
2971
|
-
data:
|
|
3060
|
+
var TxAuthDataSignatureResponse = zod.z.object({
|
|
3061
|
+
type: zod.z.literal("txAuthDataSignatureResponse"),
|
|
3062
|
+
data: AnyTxAuthDataSignatureResponse
|
|
3063
|
+
});
|
|
3064
|
+
var GetCustomerStatusResponse = zod.z.object({
|
|
3065
|
+
type: zod.z.literal("getCustomerStatusResponse"),
|
|
3066
|
+
data: zod.z.union([CustomerStatus, zod.z["null"]()])
|
|
2972
3067
|
});
|
|
2973
|
-
var IdentityAppMessage = zod.z.union([IdentityAppLoadedNotification, IdentityAppConfiguredNotification, WalletSignRequest,
|
|
3068
|
+
var IdentityAppMessage = zod.z.union([IdentityAppLoadedNotification, IdentityAppConfiguredNotification, WalletSignRequest, TxAuthDataSignatureResponse, GetCustomerStatusResponse,
|
|
2974
3069
|
// `identifier` is a technical detail that should not be exposed to the app
|
|
2975
3070
|
KycCompletionNotification.omit({
|
|
2976
3071
|
identifier: true
|
|
@@ -3110,8 +3205,8 @@ exports.AllCredentialAttributes = AllCredentialAttributes;
|
|
|
3110
3205
|
exports.AllCredentialValues = AllCredentialValues;
|
|
3111
3206
|
exports.AllScenarioExecutionAuthorizationData = AllScenarioExecutionAuthorizationData;
|
|
3112
3207
|
exports.Alpha2Country = Alpha2Country;
|
|
3208
|
+
exports.AnyTxAuthDataSignatureResponse = AnyTxAuthDataSignatureResponse;
|
|
3113
3209
|
exports.AnyTxAuthInput = AnyTxAuthInput;
|
|
3114
|
-
exports.AnyTxSignatureResponse = AnyTxSignatureResponse;
|
|
3115
3210
|
exports.AppId = AppId;
|
|
3116
3211
|
exports.AptosAddress = AptosAddress;
|
|
3117
3212
|
exports.AptosSignature = AptosSignature;
|
|
@@ -3126,6 +3221,7 @@ exports.BLOCKCHAIN_NAMESPACES_NAMES = BLOCKCHAIN_NAMESPACES_NAMES;
|
|
|
3126
3221
|
exports.BLOCKCHAIN_NAMESPACE_TO_NAME = BLOCKCHAIN_NAMESPACE_TO_NAME;
|
|
3127
3222
|
exports.BLOCKCHAIN_NAME_TO_NAMESPACE = BLOCKCHAIN_NAME_TO_NAMESPACE;
|
|
3128
3223
|
exports.BOOLEAN_OPERATORS = BOOLEAN_OPERATORS;
|
|
3224
|
+
exports.BasicCustomerContactInformation = BasicCustomerContactInformation;
|
|
3129
3225
|
exports.BlockchainAddress = BlockchainAddress;
|
|
3130
3226
|
exports.BlockchainId = BlockchainId;
|
|
3131
3227
|
exports.BlockchainNamespace = BlockchainNamespace;
|
|
@@ -3134,6 +3230,9 @@ exports.BooleanOperator = BooleanOperator;
|
|
|
3134
3230
|
exports.COSMOS_CHAIN_NAMES = COSMOS_CHAIN_NAMES;
|
|
3135
3231
|
exports.COSMOS_CHAIN_NAMES_LIST = COSMOS_CHAIN_NAMES_LIST;
|
|
3136
3232
|
exports.COSMOS_CHAIN_VALUES = COSMOS_CHAIN_VALUES;
|
|
3233
|
+
exports.CUSTOMERS_CHARTS = CUSTOMERS_CHARTS;
|
|
3234
|
+
exports.CUSTOMER_AUTOMATION_REASONS = CUSTOMER_AUTOMATION_REASONS;
|
|
3235
|
+
exports.CUSTOMER_TABLE_COLUMNS = CUSTOMER_TABLE_COLUMNS;
|
|
3137
3236
|
exports.CardanoAddress = CardanoAddress;
|
|
3138
3237
|
exports.CardanoSignature = CardanoSignature;
|
|
3139
3238
|
exports.ChallengeId = ChallengeId;
|
|
@@ -3157,6 +3256,14 @@ exports.CredentialQrCodeData = CredentialQrCodeData;
|
|
|
3157
3256
|
exports.CredentialSchemas = CredentialSchemas;
|
|
3158
3257
|
exports.CredentialType = CredentialType;
|
|
3159
3258
|
exports.CredentialTypes = CredentialTypes;
|
|
3259
|
+
exports.CustomerOnboardingLevel = CustomerOnboardingLevel;
|
|
3260
|
+
exports.CustomerOnboardingLevels = CustomerOnboardingLevels;
|
|
3261
|
+
exports.CustomerStatus = CustomerStatus;
|
|
3262
|
+
exports.CustomerStatuses = CustomerStatuses;
|
|
3263
|
+
exports.CustomerTableColumn = CustomerTableColumn;
|
|
3264
|
+
exports.CustomerType = CustomerType;
|
|
3265
|
+
exports.CustomerTypes = CustomerTypes;
|
|
3266
|
+
exports.CustomersChartType = CustomersChartType;
|
|
3160
3267
|
exports.DATE_OPERATORS = DATE_OPERATORS;
|
|
3161
3268
|
exports.DISPLAYED_LOCKCHAIN_NAMESPACES = DISPLAYED_LOCKCHAIN_NAMESPACES;
|
|
3162
3269
|
exports.DataAvailableOnStart = DataAvailableOnStart;
|
|
@@ -3175,10 +3282,10 @@ exports.EvmChainId = EvmChainId;
|
|
|
3175
3282
|
exports.ExecuteChallengeQueryConfig = ExecuteChallengeQueryConfig;
|
|
3176
3283
|
exports.ExecuteChallengeQueryInput = ExecuteChallengeQueryInput;
|
|
3177
3284
|
exports.ExecuteChallengeQueryResponse = ExecuteChallengeQueryResponse;
|
|
3285
|
+
exports.ExtendedTezosTxAuthDataSignatureResponse = ExtendedTezosTxAuthDataSignatureResponse;
|
|
3178
3286
|
exports.ExtendedTezosTxAuthInput = ExtendedTezosTxAuthInput;
|
|
3179
|
-
exports.
|
|
3287
|
+
exports.ExtendedTxAuthDataSignatureResponse = ExtendedTxAuthDataSignatureResponse;
|
|
3180
3288
|
exports.ExtendedTxAuthInput = ExtendedTxAuthInput;
|
|
3181
|
-
exports.ExtendedTxSignatureResponse = ExtendedTxSignatureResponse;
|
|
3182
3289
|
exports.ExternalClientId = ExternalClientId;
|
|
3183
3290
|
exports.FLOW_TYPES = FLOW_TYPES;
|
|
3184
3291
|
exports.FlowType = FlowType;
|
|
@@ -3186,6 +3293,8 @@ exports.FunctionCallData = FunctionCallData;
|
|
|
3186
3293
|
exports.GenericVerifiableCredentialSchema = GenericVerifiableCredentialSchema;
|
|
3187
3294
|
exports.GetCredentialsRequest = GetCredentialsRequest;
|
|
3188
3295
|
exports.GetCredentialsResponse = GetCredentialsResponse;
|
|
3296
|
+
exports.GetCustomerStatusRequest = GetCustomerStatusRequest;
|
|
3297
|
+
exports.GetCustomerStatusResponse = GetCustomerStatusResponse;
|
|
3189
3298
|
exports.GetTezosTxAuthDataSignatureResponse = GetTezosTxAuthDataSignatureResponse;
|
|
3190
3299
|
exports.GetTxAuthDataSignatureResponse = GetTxAuthDataSignatureResponse;
|
|
3191
3300
|
exports.GetTxAuthSigRequest = GetTxAuthSigRequest;
|
|
@@ -3226,8 +3335,12 @@ exports.InitialDataResponse = InitialDataResponse;
|
|
|
3226
3335
|
exports.IsVerifiedNotification = IsVerifiedNotification;
|
|
3227
3336
|
exports.IsVerifiedRequest = IsVerifiedRequest;
|
|
3228
3337
|
exports.IsVerifiedResponse = IsVerifiedResponse;
|
|
3338
|
+
exports.KybOnboardingLevel = KybOnboardingLevel;
|
|
3339
|
+
exports.KybOnboardingLevels = KybOnboardingLevels;
|
|
3229
3340
|
exports.KycCompletionData = KycCompletionData;
|
|
3230
3341
|
exports.KycCompletionNotification = KycCompletionNotification;
|
|
3342
|
+
exports.KycOnboardingLevel = KycOnboardingLevel;
|
|
3343
|
+
exports.KycOnboardingLevels = KycOnboardingLevels;
|
|
3231
3344
|
exports.MediaType = MediaType;
|
|
3232
3345
|
exports.MediaTypePID = MediaTypePID;
|
|
3233
3346
|
exports.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = NEXERA_ACTIVE_STARKNET_CHAIN_VALUES;
|
|
@@ -3296,6 +3409,8 @@ exports.QueryCredentialTypes = QueryCredentialTypes;
|
|
|
3296
3409
|
exports.QueryType = QueryType;
|
|
3297
3410
|
exports.RequiredDataRowSchema = RequiredDataRowSchema;
|
|
3298
3411
|
exports.RequiredVerificationData = RequiredVerificationData;
|
|
3412
|
+
exports.RiskScoreType = RiskScoreType;
|
|
3413
|
+
exports.RiskScoreTypes = RiskScoreTypes;
|
|
3299
3414
|
exports.RuleEngineResponse = RuleEngineResponse;
|
|
3300
3415
|
exports.RuleEngineScenarioExecutionData = RuleEngineScenarioExecutionData;
|
|
3301
3416
|
exports.RuleResultStatus = RuleResultStatus;
|
|
@@ -3343,7 +3458,7 @@ exports.TezosTxSignatureResponse = TezosTxSignatureResponse;
|
|
|
3343
3458
|
exports.TransactionData = TransactionData;
|
|
3344
3459
|
exports.TransactionResponse = TransactionResponse;
|
|
3345
3460
|
exports.TrxSignatureGatingRequest = TrxSignatureGatingRequest;
|
|
3346
|
-
exports.
|
|
3461
|
+
exports.TxAuthDataSignatureResponse = TxAuthDataSignatureResponse;
|
|
3347
3462
|
exports.TxAuthInput = TxAuthInput;
|
|
3348
3463
|
exports.TxHash = TxHash;
|
|
3349
3464
|
exports.TxSignatureResponse = TxSignatureResponse;
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
6
|
+
var identityApi_schema = require('./identity-api.schema-37b8d83d.cjs.dev.js');
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-6b27c823.cjs.dev.js');
|
|
7
8
|
require('nanoid');
|
|
8
9
|
|
|
9
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -82,8 +83,8 @@ exports.AllCredentialAttributes = identityApi_schema.AllCredentialAttributes;
|
|
|
82
83
|
exports.AllCredentialValues = identityApi_schema.AllCredentialValues;
|
|
83
84
|
exports.AllScenarioExecutionAuthorizationData = identityApi_schema.AllScenarioExecutionAuthorizationData;
|
|
84
85
|
exports.Alpha2Country = identityApi_schema.Alpha2Country;
|
|
86
|
+
exports.AnyTxAuthDataSignatureResponse = identityApi_schema.AnyTxAuthDataSignatureResponse;
|
|
85
87
|
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput;
|
|
86
|
-
exports.AnyTxSignatureResponse = identityApi_schema.AnyTxSignatureResponse;
|
|
87
88
|
exports.AppId = identityApi_schema.AppId;
|
|
88
89
|
exports.AptosAddress = identityApi_schema.AptosAddress;
|
|
89
90
|
exports.AptosSignature = identityApi_schema.AptosSignature;
|
|
@@ -98,6 +99,7 @@ exports.BLOCKCHAIN_NAMESPACES_NAMES = identityApi_schema.BLOCKCHAIN_NAMESPACES_N
|
|
|
98
99
|
exports.BLOCKCHAIN_NAMESPACE_TO_NAME = identityApi_schema.BLOCKCHAIN_NAMESPACE_TO_NAME;
|
|
99
100
|
exports.BLOCKCHAIN_NAME_TO_NAMESPACE = identityApi_schema.BLOCKCHAIN_NAME_TO_NAMESPACE;
|
|
100
101
|
exports.BOOLEAN_OPERATORS = identityApi_schema.BOOLEAN_OPERATORS;
|
|
102
|
+
exports.BasicCustomerContactInformation = identityApi_schema.BasicCustomerContactInformation;
|
|
101
103
|
exports.BlockchainAddress = identityApi_schema.BlockchainAddress;
|
|
102
104
|
exports.BlockchainId = identityApi_schema.BlockchainId;
|
|
103
105
|
exports.BlockchainNamespace = identityApi_schema.BlockchainNamespace;
|
|
@@ -106,6 +108,9 @@ exports.BooleanOperator = identityApi_schema.BooleanOperator;
|
|
|
106
108
|
exports.COSMOS_CHAIN_NAMES = identityApi_schema.COSMOS_CHAIN_NAMES;
|
|
107
109
|
exports.COSMOS_CHAIN_NAMES_LIST = identityApi_schema.COSMOS_CHAIN_NAMES_LIST;
|
|
108
110
|
exports.COSMOS_CHAIN_VALUES = identityApi_schema.COSMOS_CHAIN_VALUES;
|
|
111
|
+
exports.CUSTOMERS_CHARTS = identityApi_schema.CUSTOMERS_CHARTS;
|
|
112
|
+
exports.CUSTOMER_AUTOMATION_REASONS = identityApi_schema.CUSTOMER_AUTOMATION_REASONS;
|
|
113
|
+
exports.CUSTOMER_TABLE_COLUMNS = identityApi_schema.CUSTOMER_TABLE_COLUMNS;
|
|
109
114
|
exports.CardanoAddress = identityApi_schema.CardanoAddress;
|
|
110
115
|
exports.CardanoSignature = identityApi_schema.CardanoSignature;
|
|
111
116
|
exports.ChallengeId = identityApi_schema.ChallengeId;
|
|
@@ -123,7 +128,20 @@ exports.CreateAuthRequestProps = identityApi_schema.CreateAuthRequestProps;
|
|
|
123
128
|
exports.CreateQueryConfigurationInput = identityApi_schema.CreateQueryConfigurationInput;
|
|
124
129
|
exports.CreateQueryConfigurationResponse = identityApi_schema.CreateQueryConfigurationResponse;
|
|
125
130
|
exports.CreateZKProofRequestProps = identityApi_schema.CreateZKProofRequestProps;
|
|
131
|
+
exports.CredentialMediaType = identityApi_schema.CredentialMediaType;
|
|
132
|
+
exports.CredentialNames = identityApi_schema.CredentialNames;
|
|
126
133
|
exports.CredentialQrCodeData = identityApi_schema.CredentialQrCodeData;
|
|
134
|
+
exports.CredentialSchemas = identityApi_schema.CredentialSchemas;
|
|
135
|
+
exports.CredentialType = identityApi_schema.CredentialType;
|
|
136
|
+
exports.CredentialTypes = identityApi_schema.CredentialTypes;
|
|
137
|
+
exports.CustomerOnboardingLevel = identityApi_schema.CustomerOnboardingLevel;
|
|
138
|
+
exports.CustomerOnboardingLevels = identityApi_schema.CustomerOnboardingLevels;
|
|
139
|
+
exports.CustomerStatus = identityApi_schema.CustomerStatus;
|
|
140
|
+
exports.CustomerStatuses = identityApi_schema.CustomerStatuses;
|
|
141
|
+
exports.CustomerTableColumn = identityApi_schema.CustomerTableColumn;
|
|
142
|
+
exports.CustomerType = identityApi_schema.CustomerType;
|
|
143
|
+
exports.CustomerTypes = identityApi_schema.CustomerTypes;
|
|
144
|
+
exports.CustomersChartType = identityApi_schema.CustomersChartType;
|
|
127
145
|
exports.DATE_OPERATORS = identityApi_schema.DATE_OPERATORS;
|
|
128
146
|
exports.DISPLAYED_LOCKCHAIN_NAMESPACES = identityApi_schema.DISPLAYED_LOCKCHAIN_NAMESPACES;
|
|
129
147
|
exports.DataAvailableOnStart = identityApi_schema.DataAvailableOnStart;
|
|
@@ -142,16 +160,19 @@ exports.EvmChainId = identityApi_schema.EvmChainId;
|
|
|
142
160
|
exports.ExecuteChallengeQueryConfig = identityApi_schema.ExecuteChallengeQueryConfig;
|
|
143
161
|
exports.ExecuteChallengeQueryInput = identityApi_schema.ExecuteChallengeQueryInput;
|
|
144
162
|
exports.ExecuteChallengeQueryResponse = identityApi_schema.ExecuteChallengeQueryResponse;
|
|
163
|
+
exports.ExtendedTezosTxAuthDataSignatureResponse = identityApi_schema.ExtendedTezosTxAuthDataSignatureResponse;
|
|
145
164
|
exports.ExtendedTezosTxAuthInput = identityApi_schema.ExtendedTezosTxAuthInput;
|
|
146
|
-
exports.
|
|
165
|
+
exports.ExtendedTxAuthDataSignatureResponse = identityApi_schema.ExtendedTxAuthDataSignatureResponse;
|
|
147
166
|
exports.ExtendedTxAuthInput = identityApi_schema.ExtendedTxAuthInput;
|
|
148
|
-
exports.ExtendedTxSignatureResponse = identityApi_schema.ExtendedTxSignatureResponse;
|
|
149
167
|
exports.ExternalClientId = identityApi_schema.ExternalClientId;
|
|
150
168
|
exports.FLOW_TYPES = identityApi_schema.FLOW_TYPES;
|
|
151
169
|
exports.FlowType = identityApi_schema.FlowType;
|
|
152
170
|
exports.FunctionCallData = identityApi_schema.FunctionCallData;
|
|
171
|
+
exports.GenericVerifiableCredentialSchema = identityApi_schema.GenericVerifiableCredentialSchema;
|
|
153
172
|
exports.GetCredentialsRequest = identityApi_schema.GetCredentialsRequest;
|
|
154
173
|
exports.GetCredentialsResponse = identityApi_schema.GetCredentialsResponse;
|
|
174
|
+
exports.GetCustomerStatusRequest = identityApi_schema.GetCustomerStatusRequest;
|
|
175
|
+
exports.GetCustomerStatusResponse = identityApi_schema.GetCustomerStatusResponse;
|
|
155
176
|
exports.GetTezosTxAuthDataSignatureResponse = identityApi_schema.GetTezosTxAuthDataSignatureResponse;
|
|
156
177
|
exports.GetTxAuthDataSignatureResponse = identityApi_schema.GetTxAuthDataSignatureResponse;
|
|
157
178
|
exports.GetTxAuthSigRequest = identityApi_schema.GetTxAuthSigRequest;
|
|
@@ -161,9 +182,15 @@ exports.GetTxAuthSigResponseTezos = identityApi_schema.GetTxAuthSigResponseTezos
|
|
|
161
182
|
exports.HostMessage = identityApi_schema.HostMessage;
|
|
162
183
|
exports.HostRequestMessage = identityApi_schema.HostRequestMessage;
|
|
163
184
|
exports.HostResponseMessage = identityApi_schema.HostResponseMessage;
|
|
185
|
+
exports.ID3CredentialSubjectSchema = identityApi_schema.ID3CredentialSubjectSchema;
|
|
164
186
|
exports.IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS = identityApi_schema.IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS;
|
|
165
187
|
exports.IDENTITY_DOCUMENT_OPTIONS = identityApi_schema.IDENTITY_DOCUMENT_OPTIONS;
|
|
188
|
+
exports.IDImageCredentialSubjectSchema = identityApi_schema.IDImageCredentialSubjectSchema;
|
|
166
189
|
exports.IDInformation = identityApi_schema.IDInformation;
|
|
190
|
+
exports.IDInformationCredentialSubjectSchema = identityApi_schema.IDInformationCredentialSubjectSchema;
|
|
191
|
+
exports.IDScanCredentialSubjectSchema = identityApi_schema.IDScanCredentialSubjectSchema;
|
|
192
|
+
exports.IDScanPassportCredentialSubjectSchema = identityApi_schema.IDScanPassportCredentialSubjectSchema;
|
|
193
|
+
exports.IDScanSelfieCredentialSubjectSchema = identityApi_schema.IDScanSelfieCredentialSubjectSchema;
|
|
167
194
|
exports.ISO3CountryCode = identityApi_schema.ISO3CountryCode;
|
|
168
195
|
exports.Identifier = identityApi_schema.Identifier;
|
|
169
196
|
exports.IdentityAppMessage = identityApi_schema.IdentityAppMessage;
|
|
@@ -186,8 +213,12 @@ exports.InitialDataResponse = identityApi_schema.InitialDataResponse;
|
|
|
186
213
|
exports.IsVerifiedNotification = identityApi_schema.IsVerifiedNotification;
|
|
187
214
|
exports.IsVerifiedRequest = identityApi_schema.IsVerifiedRequest;
|
|
188
215
|
exports.IsVerifiedResponse = identityApi_schema.IsVerifiedResponse;
|
|
216
|
+
exports.KybOnboardingLevel = identityApi_schema.KybOnboardingLevel;
|
|
217
|
+
exports.KybOnboardingLevels = identityApi_schema.KybOnboardingLevels;
|
|
189
218
|
exports.KycCompletionData = identityApi_schema.KycCompletionData;
|
|
190
219
|
exports.KycCompletionNotification = identityApi_schema.KycCompletionNotification;
|
|
220
|
+
exports.KycOnboardingLevel = identityApi_schema.KycOnboardingLevel;
|
|
221
|
+
exports.KycOnboardingLevels = identityApi_schema.KycOnboardingLevels;
|
|
191
222
|
exports.MediaType = identityApi_schema.MediaType;
|
|
192
223
|
exports.MediaTypePID = identityApi_schema.MediaTypePID;
|
|
193
224
|
exports.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = identityApi_schema.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES;
|
|
@@ -204,8 +235,14 @@ exports.NEXERA_TEZOS_CHAIN_NAMES = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES;
|
|
|
204
235
|
exports.NEXERA_TEZOS_CHAIN_NAMES_LIST = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES_LIST;
|
|
205
236
|
exports.NEXERA_TEZOS_CHAIN_VALUES = identityApi_schema.NEXERA_TEZOS_CHAIN_VALUES;
|
|
206
237
|
exports.NUMERIC_OPERATORS = identityApi_schema.NUMERIC_OPERATORS;
|
|
238
|
+
exports.NexeraCredentialType = identityApi_schema.NexeraCredentialType;
|
|
207
239
|
exports.NonParsedQueryConfiguration = identityApi_schema.NonParsedQueryConfiguration;
|
|
208
240
|
exports.NumericOperator = identityApi_schema.NumericOperator;
|
|
241
|
+
exports.OLD_AMLScreeningsResultsCredentialSubjectSchema = identityApi_schema.OLD_AMLScreeningsResultsCredentialSubjectSchema;
|
|
242
|
+
exports.OLD_IDImageCredentialSubjectSchema = identityApi_schema.OLD_IDImageCredentialSubjectSchema;
|
|
243
|
+
exports.OLD_IDInformationCredentialSubjectSchema = identityApi_schema.OLD_IDInformationCredentialSubjectSchema;
|
|
244
|
+
exports.OLD_ProofOfResidenceCredentialSubjectSchema = identityApi_schema.OLD_ProofOfResidenceCredentialSubjectSchema;
|
|
245
|
+
exports.OLD_SelfieImageCredentialSubjectSchema = identityApi_schema.OLD_SelfieImageCredentialSubjectSchema;
|
|
209
246
|
exports.OPAChallengeQuery = identityApi_schema.OPAChallengeQuery;
|
|
210
247
|
exports.OcvSdkInitialized = identityApi_schema.OcvSdkInitialized;
|
|
211
248
|
exports.OffChainScenarioExecutionData = identityApi_schema.OffChainScenarioExecutionData;
|
|
@@ -238,6 +275,7 @@ exports.PolygonNetworkNames = identityApi_schema.PolygonNetworkNames;
|
|
|
238
275
|
exports.PrivateKey = identityApi_schema.PrivateKey;
|
|
239
276
|
exports.ProjectAuthorizationData = identityApi_schema.ProjectAuthorizationData;
|
|
240
277
|
exports.ProofData = identityApi_schema.ProofData;
|
|
278
|
+
exports.ProofOfResidenceCredentialSubjectSchema = identityApi_schema.ProofOfResidenceCredentialSubjectSchema;
|
|
241
279
|
exports.PublicKey = identityApi_schema.PublicKey;
|
|
242
280
|
exports.QrCodeLinkWithSchemaType = identityApi_schema.QrCodeLinkWithSchemaType;
|
|
243
281
|
exports.QueryConfig = identityApi_schema.QueryConfig;
|
|
@@ -249,6 +287,8 @@ exports.QueryCredentialTypes = identityApi_schema.QueryCredentialTypes;
|
|
|
249
287
|
exports.QueryType = identityApi_schema.QueryType;
|
|
250
288
|
exports.RequiredDataRowSchema = identityApi_schema.RequiredDataRowSchema;
|
|
251
289
|
exports.RequiredVerificationData = identityApi_schema.RequiredVerificationData;
|
|
290
|
+
exports.RiskScoreType = identityApi_schema.RiskScoreType;
|
|
291
|
+
exports.RiskScoreTypes = identityApi_schema.RiskScoreTypes;
|
|
252
292
|
exports.RuleEngineResponse = identityApi_schema.RuleEngineResponse;
|
|
253
293
|
exports.RuleEngineScenarioExecutionData = identityApi_schema.RuleEngineScenarioExecutionData;
|
|
254
294
|
exports.RuleResultStatus = identityApi_schema.RuleResultStatus;
|
|
@@ -268,6 +308,7 @@ exports.ScenarioType = identityApi_schema.ScenarioType;
|
|
|
268
308
|
exports.ScenarioTypes = identityApi_schema.ScenarioTypes;
|
|
269
309
|
exports.SdkVerificationOutput = identityApi_schema.SdkVerificationOutput;
|
|
270
310
|
exports.SdkVerificationResponseSchema = identityApi_schema.SdkVerificationResponseSchema;
|
|
311
|
+
exports.SelfieImageCredentialSubjectSchema = identityApi_schema.SelfieImageCredentialSubjectSchema;
|
|
271
312
|
exports.SendTransactionRequest = identityApi_schema.SendTransactionRequest;
|
|
272
313
|
exports.SignatureRequest = identityApi_schema.SignatureRequest;
|
|
273
314
|
exports.SignatureResponse = identityApi_schema.SignatureResponse;
|
|
@@ -295,13 +336,14 @@ exports.TezosTxSignatureResponse = identityApi_schema.TezosTxSignatureResponse;
|
|
|
295
336
|
exports.TransactionData = identityApi_schema.TransactionData;
|
|
296
337
|
exports.TransactionResponse = identityApi_schema.TransactionResponse;
|
|
297
338
|
exports.TrxSignatureGatingRequest = identityApi_schema.TrxSignatureGatingRequest;
|
|
298
|
-
exports.
|
|
339
|
+
exports.TxAuthDataSignatureResponse = identityApi_schema.TxAuthDataSignatureResponse;
|
|
299
340
|
exports.TxAuthInput = identityApi_schema.TxAuthInput;
|
|
300
341
|
exports.TxHash = identityApi_schema.TxHash;
|
|
301
342
|
exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
302
343
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
303
344
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
304
345
|
exports.UuidString = identityApi_schema.UuidString;
|
|
346
|
+
exports.VerifiableCredential = identityApi_schema.VerifiableCredential;
|
|
305
347
|
exports.VerificationMode = identityApi_schema.VerificationMode;
|
|
306
348
|
exports.VerificationModes = identityApi_schema.VerificationModes;
|
|
307
349
|
exports.WalletId = identityApi_schema.WalletId;
|
|
@@ -321,6 +363,7 @@ exports.countryISO2toISO3Mapping = identityApi_schema.countryISO2toISO3Mapping;
|
|
|
321
363
|
exports.countryISO3toISO2Mapping = identityApi_schema.countryISO3toISO2Mapping;
|
|
322
364
|
exports.createBrandedSchemaId = identityApi_schema.createBrandedSchemaId;
|
|
323
365
|
exports.generateId = identityApi_schema.generateId;
|
|
366
|
+
exports.getCredentialName = identityApi_schema.getCredentialName;
|
|
324
367
|
exports.isValidAddress = identityApi_schema.isValidAddress;
|
|
325
368
|
exports.isoCountriesNameFromISO2 = identityApi_schema.isoCountriesNameFromISO2;
|
|
326
369
|
exports.operatorDisplayMap = identityApi_schema.operatorDisplayMap;
|
|
@@ -329,6 +372,10 @@ exports.parseIden3Message = identityApi_schema.parseIden3Message;
|
|
|
329
372
|
exports.parseSessionIdFromUrl = identityApi_schema.parseSessionIdFromUrl;
|
|
330
373
|
exports.shortAddress = identityApi_schema.shortAddress;
|
|
331
374
|
exports.shortBlockchainAddress = identityApi_schema.shortBlockchainAddress;
|
|
375
|
+
exports.VC_JSON_SCHEMA_MAP = frontendUtilities_schema.VC_JSON_SCHEMA_MAP;
|
|
376
|
+
exports.cleanObject = frontendUtilities_schema.cleanObject;
|
|
377
|
+
exports.getAvailableFields = frontendUtilities_schema.getAvailableFields;
|
|
378
|
+
exports.getCredentialSchemaLocation = frontendUtilities_schema.getCredentialSchemaLocation;
|
|
332
379
|
exports.DownloadableKycSchema = DownloadableKycSchema;
|
|
333
380
|
exports.EncryptedKycKey = EncryptedKycKey;
|
|
334
381
|
exports.EncryptedVerifiableCredentialDataSchema = EncryptedVerifiableCredentialDataSchema;
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
6
|
+
var identityApi_schema = require('./identity-api.schema-83828ec9.cjs.prod.js');
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-ff93910a.cjs.prod.js');
|
|
7
8
|
require('nanoid');
|
|
8
9
|
|
|
9
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -82,8 +83,8 @@ exports.AllCredentialAttributes = identityApi_schema.AllCredentialAttributes;
|
|
|
82
83
|
exports.AllCredentialValues = identityApi_schema.AllCredentialValues;
|
|
83
84
|
exports.AllScenarioExecutionAuthorizationData = identityApi_schema.AllScenarioExecutionAuthorizationData;
|
|
84
85
|
exports.Alpha2Country = identityApi_schema.Alpha2Country;
|
|
86
|
+
exports.AnyTxAuthDataSignatureResponse = identityApi_schema.AnyTxAuthDataSignatureResponse;
|
|
85
87
|
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput;
|
|
86
|
-
exports.AnyTxSignatureResponse = identityApi_schema.AnyTxSignatureResponse;
|
|
87
88
|
exports.AppId = identityApi_schema.AppId;
|
|
88
89
|
exports.AptosAddress = identityApi_schema.AptosAddress;
|
|
89
90
|
exports.AptosSignature = identityApi_schema.AptosSignature;
|
|
@@ -98,6 +99,7 @@ exports.BLOCKCHAIN_NAMESPACES_NAMES = identityApi_schema.BLOCKCHAIN_NAMESPACES_N
|
|
|
98
99
|
exports.BLOCKCHAIN_NAMESPACE_TO_NAME = identityApi_schema.BLOCKCHAIN_NAMESPACE_TO_NAME;
|
|
99
100
|
exports.BLOCKCHAIN_NAME_TO_NAMESPACE = identityApi_schema.BLOCKCHAIN_NAME_TO_NAMESPACE;
|
|
100
101
|
exports.BOOLEAN_OPERATORS = identityApi_schema.BOOLEAN_OPERATORS;
|
|
102
|
+
exports.BasicCustomerContactInformation = identityApi_schema.BasicCustomerContactInformation;
|
|
101
103
|
exports.BlockchainAddress = identityApi_schema.BlockchainAddress;
|
|
102
104
|
exports.BlockchainId = identityApi_schema.BlockchainId;
|
|
103
105
|
exports.BlockchainNamespace = identityApi_schema.BlockchainNamespace;
|
|
@@ -106,6 +108,9 @@ exports.BooleanOperator = identityApi_schema.BooleanOperator;
|
|
|
106
108
|
exports.COSMOS_CHAIN_NAMES = identityApi_schema.COSMOS_CHAIN_NAMES;
|
|
107
109
|
exports.COSMOS_CHAIN_NAMES_LIST = identityApi_schema.COSMOS_CHAIN_NAMES_LIST;
|
|
108
110
|
exports.COSMOS_CHAIN_VALUES = identityApi_schema.COSMOS_CHAIN_VALUES;
|
|
111
|
+
exports.CUSTOMERS_CHARTS = identityApi_schema.CUSTOMERS_CHARTS;
|
|
112
|
+
exports.CUSTOMER_AUTOMATION_REASONS = identityApi_schema.CUSTOMER_AUTOMATION_REASONS;
|
|
113
|
+
exports.CUSTOMER_TABLE_COLUMNS = identityApi_schema.CUSTOMER_TABLE_COLUMNS;
|
|
109
114
|
exports.CardanoAddress = identityApi_schema.CardanoAddress;
|
|
110
115
|
exports.CardanoSignature = identityApi_schema.CardanoSignature;
|
|
111
116
|
exports.ChallengeId = identityApi_schema.ChallengeId;
|
|
@@ -123,7 +128,20 @@ exports.CreateAuthRequestProps = identityApi_schema.CreateAuthRequestProps;
|
|
|
123
128
|
exports.CreateQueryConfigurationInput = identityApi_schema.CreateQueryConfigurationInput;
|
|
124
129
|
exports.CreateQueryConfigurationResponse = identityApi_schema.CreateQueryConfigurationResponse;
|
|
125
130
|
exports.CreateZKProofRequestProps = identityApi_schema.CreateZKProofRequestProps;
|
|
131
|
+
exports.CredentialMediaType = identityApi_schema.CredentialMediaType;
|
|
132
|
+
exports.CredentialNames = identityApi_schema.CredentialNames;
|
|
126
133
|
exports.CredentialQrCodeData = identityApi_schema.CredentialQrCodeData;
|
|
134
|
+
exports.CredentialSchemas = identityApi_schema.CredentialSchemas;
|
|
135
|
+
exports.CredentialType = identityApi_schema.CredentialType;
|
|
136
|
+
exports.CredentialTypes = identityApi_schema.CredentialTypes;
|
|
137
|
+
exports.CustomerOnboardingLevel = identityApi_schema.CustomerOnboardingLevel;
|
|
138
|
+
exports.CustomerOnboardingLevels = identityApi_schema.CustomerOnboardingLevels;
|
|
139
|
+
exports.CustomerStatus = identityApi_schema.CustomerStatus;
|
|
140
|
+
exports.CustomerStatuses = identityApi_schema.CustomerStatuses;
|
|
141
|
+
exports.CustomerTableColumn = identityApi_schema.CustomerTableColumn;
|
|
142
|
+
exports.CustomerType = identityApi_schema.CustomerType;
|
|
143
|
+
exports.CustomerTypes = identityApi_schema.CustomerTypes;
|
|
144
|
+
exports.CustomersChartType = identityApi_schema.CustomersChartType;
|
|
127
145
|
exports.DATE_OPERATORS = identityApi_schema.DATE_OPERATORS;
|
|
128
146
|
exports.DISPLAYED_LOCKCHAIN_NAMESPACES = identityApi_schema.DISPLAYED_LOCKCHAIN_NAMESPACES;
|
|
129
147
|
exports.DataAvailableOnStart = identityApi_schema.DataAvailableOnStart;
|
|
@@ -142,16 +160,19 @@ exports.EvmChainId = identityApi_schema.EvmChainId;
|
|
|
142
160
|
exports.ExecuteChallengeQueryConfig = identityApi_schema.ExecuteChallengeQueryConfig;
|
|
143
161
|
exports.ExecuteChallengeQueryInput = identityApi_schema.ExecuteChallengeQueryInput;
|
|
144
162
|
exports.ExecuteChallengeQueryResponse = identityApi_schema.ExecuteChallengeQueryResponse;
|
|
163
|
+
exports.ExtendedTezosTxAuthDataSignatureResponse = identityApi_schema.ExtendedTezosTxAuthDataSignatureResponse;
|
|
145
164
|
exports.ExtendedTezosTxAuthInput = identityApi_schema.ExtendedTezosTxAuthInput;
|
|
146
|
-
exports.
|
|
165
|
+
exports.ExtendedTxAuthDataSignatureResponse = identityApi_schema.ExtendedTxAuthDataSignatureResponse;
|
|
147
166
|
exports.ExtendedTxAuthInput = identityApi_schema.ExtendedTxAuthInput;
|
|
148
|
-
exports.ExtendedTxSignatureResponse = identityApi_schema.ExtendedTxSignatureResponse;
|
|
149
167
|
exports.ExternalClientId = identityApi_schema.ExternalClientId;
|
|
150
168
|
exports.FLOW_TYPES = identityApi_schema.FLOW_TYPES;
|
|
151
169
|
exports.FlowType = identityApi_schema.FlowType;
|
|
152
170
|
exports.FunctionCallData = identityApi_schema.FunctionCallData;
|
|
171
|
+
exports.GenericVerifiableCredentialSchema = identityApi_schema.GenericVerifiableCredentialSchema;
|
|
153
172
|
exports.GetCredentialsRequest = identityApi_schema.GetCredentialsRequest;
|
|
154
173
|
exports.GetCredentialsResponse = identityApi_schema.GetCredentialsResponse;
|
|
174
|
+
exports.GetCustomerStatusRequest = identityApi_schema.GetCustomerStatusRequest;
|
|
175
|
+
exports.GetCustomerStatusResponse = identityApi_schema.GetCustomerStatusResponse;
|
|
155
176
|
exports.GetTezosTxAuthDataSignatureResponse = identityApi_schema.GetTezosTxAuthDataSignatureResponse;
|
|
156
177
|
exports.GetTxAuthDataSignatureResponse = identityApi_schema.GetTxAuthDataSignatureResponse;
|
|
157
178
|
exports.GetTxAuthSigRequest = identityApi_schema.GetTxAuthSigRequest;
|
|
@@ -161,9 +182,15 @@ exports.GetTxAuthSigResponseTezos = identityApi_schema.GetTxAuthSigResponseTezos
|
|
|
161
182
|
exports.HostMessage = identityApi_schema.HostMessage;
|
|
162
183
|
exports.HostRequestMessage = identityApi_schema.HostRequestMessage;
|
|
163
184
|
exports.HostResponseMessage = identityApi_schema.HostResponseMessage;
|
|
185
|
+
exports.ID3CredentialSubjectSchema = identityApi_schema.ID3CredentialSubjectSchema;
|
|
164
186
|
exports.IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS = identityApi_schema.IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS;
|
|
165
187
|
exports.IDENTITY_DOCUMENT_OPTIONS = identityApi_schema.IDENTITY_DOCUMENT_OPTIONS;
|
|
188
|
+
exports.IDImageCredentialSubjectSchema = identityApi_schema.IDImageCredentialSubjectSchema;
|
|
166
189
|
exports.IDInformation = identityApi_schema.IDInformation;
|
|
190
|
+
exports.IDInformationCredentialSubjectSchema = identityApi_schema.IDInformationCredentialSubjectSchema;
|
|
191
|
+
exports.IDScanCredentialSubjectSchema = identityApi_schema.IDScanCredentialSubjectSchema;
|
|
192
|
+
exports.IDScanPassportCredentialSubjectSchema = identityApi_schema.IDScanPassportCredentialSubjectSchema;
|
|
193
|
+
exports.IDScanSelfieCredentialSubjectSchema = identityApi_schema.IDScanSelfieCredentialSubjectSchema;
|
|
167
194
|
exports.ISO3CountryCode = identityApi_schema.ISO3CountryCode;
|
|
168
195
|
exports.Identifier = identityApi_schema.Identifier;
|
|
169
196
|
exports.IdentityAppMessage = identityApi_schema.IdentityAppMessage;
|
|
@@ -186,8 +213,12 @@ exports.InitialDataResponse = identityApi_schema.InitialDataResponse;
|
|
|
186
213
|
exports.IsVerifiedNotification = identityApi_schema.IsVerifiedNotification;
|
|
187
214
|
exports.IsVerifiedRequest = identityApi_schema.IsVerifiedRequest;
|
|
188
215
|
exports.IsVerifiedResponse = identityApi_schema.IsVerifiedResponse;
|
|
216
|
+
exports.KybOnboardingLevel = identityApi_schema.KybOnboardingLevel;
|
|
217
|
+
exports.KybOnboardingLevels = identityApi_schema.KybOnboardingLevels;
|
|
189
218
|
exports.KycCompletionData = identityApi_schema.KycCompletionData;
|
|
190
219
|
exports.KycCompletionNotification = identityApi_schema.KycCompletionNotification;
|
|
220
|
+
exports.KycOnboardingLevel = identityApi_schema.KycOnboardingLevel;
|
|
221
|
+
exports.KycOnboardingLevels = identityApi_schema.KycOnboardingLevels;
|
|
191
222
|
exports.MediaType = identityApi_schema.MediaType;
|
|
192
223
|
exports.MediaTypePID = identityApi_schema.MediaTypePID;
|
|
193
224
|
exports.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = identityApi_schema.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES;
|
|
@@ -204,8 +235,14 @@ exports.NEXERA_TEZOS_CHAIN_NAMES = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES;
|
|
|
204
235
|
exports.NEXERA_TEZOS_CHAIN_NAMES_LIST = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES_LIST;
|
|
205
236
|
exports.NEXERA_TEZOS_CHAIN_VALUES = identityApi_schema.NEXERA_TEZOS_CHAIN_VALUES;
|
|
206
237
|
exports.NUMERIC_OPERATORS = identityApi_schema.NUMERIC_OPERATORS;
|
|
238
|
+
exports.NexeraCredentialType = identityApi_schema.NexeraCredentialType;
|
|
207
239
|
exports.NonParsedQueryConfiguration = identityApi_schema.NonParsedQueryConfiguration;
|
|
208
240
|
exports.NumericOperator = identityApi_schema.NumericOperator;
|
|
241
|
+
exports.OLD_AMLScreeningsResultsCredentialSubjectSchema = identityApi_schema.OLD_AMLScreeningsResultsCredentialSubjectSchema;
|
|
242
|
+
exports.OLD_IDImageCredentialSubjectSchema = identityApi_schema.OLD_IDImageCredentialSubjectSchema;
|
|
243
|
+
exports.OLD_IDInformationCredentialSubjectSchema = identityApi_schema.OLD_IDInformationCredentialSubjectSchema;
|
|
244
|
+
exports.OLD_ProofOfResidenceCredentialSubjectSchema = identityApi_schema.OLD_ProofOfResidenceCredentialSubjectSchema;
|
|
245
|
+
exports.OLD_SelfieImageCredentialSubjectSchema = identityApi_schema.OLD_SelfieImageCredentialSubjectSchema;
|
|
209
246
|
exports.OPAChallengeQuery = identityApi_schema.OPAChallengeQuery;
|
|
210
247
|
exports.OcvSdkInitialized = identityApi_schema.OcvSdkInitialized;
|
|
211
248
|
exports.OffChainScenarioExecutionData = identityApi_schema.OffChainScenarioExecutionData;
|
|
@@ -238,6 +275,7 @@ exports.PolygonNetworkNames = identityApi_schema.PolygonNetworkNames;
|
|
|
238
275
|
exports.PrivateKey = identityApi_schema.PrivateKey;
|
|
239
276
|
exports.ProjectAuthorizationData = identityApi_schema.ProjectAuthorizationData;
|
|
240
277
|
exports.ProofData = identityApi_schema.ProofData;
|
|
278
|
+
exports.ProofOfResidenceCredentialSubjectSchema = identityApi_schema.ProofOfResidenceCredentialSubjectSchema;
|
|
241
279
|
exports.PublicKey = identityApi_schema.PublicKey;
|
|
242
280
|
exports.QrCodeLinkWithSchemaType = identityApi_schema.QrCodeLinkWithSchemaType;
|
|
243
281
|
exports.QueryConfig = identityApi_schema.QueryConfig;
|
|
@@ -249,6 +287,8 @@ exports.QueryCredentialTypes = identityApi_schema.QueryCredentialTypes;
|
|
|
249
287
|
exports.QueryType = identityApi_schema.QueryType;
|
|
250
288
|
exports.RequiredDataRowSchema = identityApi_schema.RequiredDataRowSchema;
|
|
251
289
|
exports.RequiredVerificationData = identityApi_schema.RequiredVerificationData;
|
|
290
|
+
exports.RiskScoreType = identityApi_schema.RiskScoreType;
|
|
291
|
+
exports.RiskScoreTypes = identityApi_schema.RiskScoreTypes;
|
|
252
292
|
exports.RuleEngineResponse = identityApi_schema.RuleEngineResponse;
|
|
253
293
|
exports.RuleEngineScenarioExecutionData = identityApi_schema.RuleEngineScenarioExecutionData;
|
|
254
294
|
exports.RuleResultStatus = identityApi_schema.RuleResultStatus;
|
|
@@ -268,6 +308,7 @@ exports.ScenarioType = identityApi_schema.ScenarioType;
|
|
|
268
308
|
exports.ScenarioTypes = identityApi_schema.ScenarioTypes;
|
|
269
309
|
exports.SdkVerificationOutput = identityApi_schema.SdkVerificationOutput;
|
|
270
310
|
exports.SdkVerificationResponseSchema = identityApi_schema.SdkVerificationResponseSchema;
|
|
311
|
+
exports.SelfieImageCredentialSubjectSchema = identityApi_schema.SelfieImageCredentialSubjectSchema;
|
|
271
312
|
exports.SendTransactionRequest = identityApi_schema.SendTransactionRequest;
|
|
272
313
|
exports.SignatureRequest = identityApi_schema.SignatureRequest;
|
|
273
314
|
exports.SignatureResponse = identityApi_schema.SignatureResponse;
|
|
@@ -295,13 +336,14 @@ exports.TezosTxSignatureResponse = identityApi_schema.TezosTxSignatureResponse;
|
|
|
295
336
|
exports.TransactionData = identityApi_schema.TransactionData;
|
|
296
337
|
exports.TransactionResponse = identityApi_schema.TransactionResponse;
|
|
297
338
|
exports.TrxSignatureGatingRequest = identityApi_schema.TrxSignatureGatingRequest;
|
|
298
|
-
exports.
|
|
339
|
+
exports.TxAuthDataSignatureResponse = identityApi_schema.TxAuthDataSignatureResponse;
|
|
299
340
|
exports.TxAuthInput = identityApi_schema.TxAuthInput;
|
|
300
341
|
exports.TxHash = identityApi_schema.TxHash;
|
|
301
342
|
exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
302
343
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
303
344
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
304
345
|
exports.UuidString = identityApi_schema.UuidString;
|
|
346
|
+
exports.VerifiableCredential = identityApi_schema.VerifiableCredential;
|
|
305
347
|
exports.VerificationMode = identityApi_schema.VerificationMode;
|
|
306
348
|
exports.VerificationModes = identityApi_schema.VerificationModes;
|
|
307
349
|
exports.WalletId = identityApi_schema.WalletId;
|
|
@@ -321,6 +363,7 @@ exports.countryISO2toISO3Mapping = identityApi_schema.countryISO2toISO3Mapping;
|
|
|
321
363
|
exports.countryISO3toISO2Mapping = identityApi_schema.countryISO3toISO2Mapping;
|
|
322
364
|
exports.createBrandedSchemaId = identityApi_schema.createBrandedSchemaId;
|
|
323
365
|
exports.generateId = identityApi_schema.generateId;
|
|
366
|
+
exports.getCredentialName = identityApi_schema.getCredentialName;
|
|
324
367
|
exports.isValidAddress = identityApi_schema.isValidAddress;
|
|
325
368
|
exports.isoCountriesNameFromISO2 = identityApi_schema.isoCountriesNameFromISO2;
|
|
326
369
|
exports.operatorDisplayMap = identityApi_schema.operatorDisplayMap;
|
|
@@ -329,6 +372,10 @@ exports.parseIden3Message = identityApi_schema.parseIden3Message;
|
|
|
329
372
|
exports.parseSessionIdFromUrl = identityApi_schema.parseSessionIdFromUrl;
|
|
330
373
|
exports.shortAddress = identityApi_schema.shortAddress;
|
|
331
374
|
exports.shortBlockchainAddress = identityApi_schema.shortBlockchainAddress;
|
|
375
|
+
exports.VC_JSON_SCHEMA_MAP = frontendUtilities_schema.VC_JSON_SCHEMA_MAP;
|
|
376
|
+
exports.cleanObject = frontendUtilities_schema.cleanObject;
|
|
377
|
+
exports.getAvailableFields = frontendUtilities_schema.getAvailableFields;
|
|
378
|
+
exports.getCredentialSchemaLocation = frontendUtilities_schema.getCredentialSchemaLocation;
|
|
332
379
|
exports.DownloadableKycSchema = DownloadableKycSchema;
|
|
333
380
|
exports.EncryptedKycKey = EncryptedKycKey;
|
|
334
381
|
exports.EncryptedVerifiableCredentialDataSchema = EncryptedVerifiableCredentialDataSchema;
|