@nexeraid/identity-schemas 2.3.23-dev → 2.3.23-staging
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/{customers.schema-cc3df18f.cjs.dev.js → customers.schema-56ca4b11.cjs.dev.js} +1 -1
- package/dist/{customers.schema-f0d472b1.cjs.prod.js → customers.schema-c6702f96.cjs.prod.js} +1 -1
- package/dist/{customers.schema-0306abb6.esm.js → customers.schema-f7da825d.esm.js} +1 -1
- package/dist/declarations/src/identity-ids.schema.d.ts +29 -65
- package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/index.d.ts +0 -1
- package/dist/declarations/src/webhooks/index.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +38 -2356
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-0be040b7.cjs.dev.js → frontend-utilities.schema-3fd03e9f.cjs.dev.js} +1 -1
- package/dist/{frontend-utilities.schema-cd88e673.cjs.prod.js → frontend-utilities.schema-bb63f894.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-02fc8336.esm.js → frontend-utilities.schema-e16f9289.esm.js} +1 -1
- package/dist/{identity-api.schema-2de31155.cjs.prod.js → identity-api.schema-00c99eb6.cjs.prod.js} +18 -70
- package/dist/{identity-api.schema-bbb2c243.cjs.dev.js → identity-api.schema-04a016a1.cjs.dev.js} +18 -70
- package/dist/{identity-api.schema-68a83f54.esm.js → identity-api.schema-2a4cdb96.esm.js} +19 -53
- package/dist/nexeraid-identity-schemas.cjs.dev.js +38 -35
- package/dist/nexeraid-identity-schemas.cjs.prod.js +38 -35
- package/dist/nexeraid-identity-schemas.esm.js +26 -5
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +7 -97
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +7 -97
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +8 -90
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +0 -46
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts.map +0 -1
- package/dist/transaction.schema-2141e819.cjs.dev.js +0 -40
- package/dist/transaction.schema-7297e823.cjs.prod.js +0 -40
- package/dist/transaction.schema-fb699c40.esm.js +0 -25
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
|
|
3
|
-
// Transaction Type
|
|
4
|
-
var TransactionTypes = ["crypto", "fiat"];
|
|
5
|
-
var TransactionType = z["enum"](TransactionTypes);
|
|
6
|
-
// Transaction Risk level
|
|
7
|
-
var TransactionRiskLevels = ["Low", "Medium", "High"];
|
|
8
|
-
var TransactionRiskLevel = z["enum"](TransactionRiskLevels);
|
|
9
|
-
// TransactionReview Status
|
|
10
|
-
var TransactionReviewStatuses = ["approved", "review", "blocked"];
|
|
11
|
-
var TransactionReviewStatus = z["enum"](TransactionReviewStatuses);
|
|
12
|
-
// TransactionInfos Direction
|
|
13
|
-
var TransactionDirections = ["IN", "OUT"];
|
|
14
|
-
var TransactionDirection = z["enum"](TransactionDirections);
|
|
15
|
-
// TransactionExtractedInfos Providers
|
|
16
|
-
var TransactionProviders = ["sumsub"];
|
|
17
|
-
var TransactionProvider = z["enum"](TransactionProviders);
|
|
18
|
-
// PaymentMethods Type
|
|
19
|
-
var PaymentTypes = ["card", "account", "crypto"];
|
|
20
|
-
var PaymentType = z["enum"](PaymentTypes);
|
|
21
|
-
// TransactionParties Type
|
|
22
|
-
var TransactionPartiesTypes = ["individual", "company", "smart-contract"];
|
|
23
|
-
var TransactionPartiesType = z["enum"](TransactionPartiesTypes);
|
|
24
|
-
|
|
25
|
-
export { PaymentTypes as P, TransactionTypes as T, TransactionType as a, TransactionRiskLevels as b, TransactionRiskLevel as c, TransactionReviewStatuses as d, TransactionReviewStatus as e, TransactionDirections as f, TransactionDirection as g, TransactionProviders as h, TransactionProvider as i, PaymentType as j, TransactionPartiesTypes as k, TransactionPartiesType as l };
|