@nexeraid/identity-schemas 2.88.0-dev → 2.90.0-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.
Files changed (38) hide show
  1. package/dist/{CoinMarketCap.schema-2522156d.esm.mjs → CoinMarketCap.schema-20cad571.esm.mjs} +2 -2
  2. package/dist/{CoinMarketCap.schema-20fb43b4.cjs.prod.cjs → CoinMarketCap.schema-ad7f766b.cjs.prod.cjs} +2 -2
  3. package/dist/{CoinMarketCap.schema-b5d9d48a.cjs.dev.cjs → CoinMarketCap.schema-cfab0fd1.cjs.dev.cjs} +2 -2
  4. package/dist/declarations/src/providers/chainalysis/chainalysis.schema.d.ts +20 -20
  5. package/dist/declarations/src/vault/schemas/generated/Transaction.schema.json.d.ts +23 -0
  6. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts +35 -0
  7. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts.map +1 -1
  8. package/dist/declarations/src/vault/vault.schema.d.ts +191 -0
  9. package/dist/declarations/src/vault/vault.schema.d.ts.map +1 -1
  10. package/dist/{identity-api.schema-bdf74232.esm.mjs → identity-api.schema-63ceffe7.esm.mjs} +1 -1
  11. package/dist/{identity-api.schema-4670c94c.cjs.dev.cjs → identity-api.schema-6abb6921.cjs.dev.cjs} +1 -1
  12. package/dist/{identity-api.schema-25a40938.cjs.prod.cjs → identity-api.schema-c6d12982.cjs.prod.cjs} +1 -1
  13. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +3 -3
  14. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +3 -3
  15. package/dist/nexeraid-identity-schemas.esm.mjs +4 -4
  16. package/dist/package.json +1 -1
  17. package/dist/{tfhe-utilities-be752443.cjs.prod.cjs → tfhe-utilities-057d82b7.cjs.prod.cjs} +2 -2
  18. package/dist/{tfhe-utilities-9a4bc5f6.esm.mjs → tfhe-utilities-25b1c53b.esm.mjs} +2 -2
  19. package/dist/{tfhe-utilities-d05b2a83.cjs.dev.cjs → tfhe-utilities-ee36869f.cjs.dev.cjs} +2 -2
  20. package/dist/{vault.schema-06c7ebc0.esm.mjs → vault.schema-607626e2.esm.mjs} +88 -6
  21. package/dist/{vault.schema-771644cb.cjs.prod.cjs → vault.schema-c507b278.cjs.dev.cjs} +88 -6
  22. package/dist/{vault.schema-94ffd2d8.cjs.dev.cjs → vault.schema-faff845c.cjs.prod.cjs} +88 -6
  23. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
  24. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
  25. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +2 -2
  26. package/package.json +1 -1
  27. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +3 -3
  28. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +3 -3
  29. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +3 -3
  30. package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +1 -1
  31. package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +1 -1
  32. package/vault/dist/nexeraid-identity-schemas-vault.esm.mjs +1 -1
  33. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
  34. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
  35. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +3 -3
  36. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +3 -3
  37. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +3 -3
  38. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +3 -3
@@ -1816,6 +1816,7 @@ export declare const VaultZodSchema: z.ZodObject<{
1816
1816
  riskScore: z.ZodOptional<z.ZodNumber>;
1817
1817
  riskLevel: z.ZodOptional<z.ZodString>;
1818
1818
  type: z.ZodOptional<z.ZodEnum<["crypto", "fiat"]>>;
1819
+ direction: z.ZodOptional<z.ZodEnum<["IN", "OUT", "EXCHANGE"]>>;
1819
1820
  assets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1820
1821
  }, "strip", z.ZodTypeAny, {
1821
1822
  type?: "crypto" | "fiat" | undefined;
@@ -1823,6 +1824,7 @@ export declare const VaultZodSchema: z.ZodObject<{
1823
1824
  amount?: import("decimal.js").Decimal | undefined;
1824
1825
  riskScore?: number | undefined;
1825
1826
  transactionDate?: Date | undefined;
1827
+ direction?: "EXCHANGE" | "IN" | "OUT" | undefined;
1826
1828
  assets?: string[] | undefined;
1827
1829
  }, {
1828
1830
  type?: "crypto" | "fiat" | undefined;
@@ -1830,6 +1832,7 @@ export declare const VaultZodSchema: z.ZodObject<{
1830
1832
  amount?: import("decimal.js").Decimal | undefined;
1831
1833
  riskScore?: number | undefined;
1832
1834
  transactionDate?: Date | undefined;
1835
+ direction?: "EXCHANGE" | "IN" | "OUT" | undefined;
1833
1836
  assets?: string[] | undefined;
1834
1837
  }>>;
1835
1838
  originator: z.ZodOptional<z.ZodObject<{
@@ -2089,6 +2092,102 @@ export declare const VaultZodSchema: z.ZodObject<{
2089
2092
  entityType: "ATM" | "Airdrop" | "Auctioned assets" | "Bank" | "Block reward" | "Bot" | "Child abuse" | "Cloud mining" | "Community reported scam" | "Cross-chain Bridge Protocol" | "Darkweb" | "Decentralized service" | "Dex" | "Donations" | "Exchange" | "Gambling" | "Hack" | "ICO" | "Ignored small amounts" | "Investment management firm" | "Large transaction" | "Large unnamed entity" | "Mining pool" | "Mixing pattern" | "Mixing service" | "NFT Marketplace" | "No entities found" | "Ongoing legal action" | "Payment Service Provider" | "Payment channel" | "Peeling chain of unknown origin" | "Phishing" | "Ransomware" | "Real World Asset" | "Sanction list" | "Scam" | "Seized assets" | "Service" | "Staking pool" | "Suspicious" | "Terrorism" | "Token" | "Token burning" | "Token minting" | "Unspent output" | "Wallet" | "OFAC sanction list" | "Closed exchange" | "Custom group";
2090
2093
  }[] | undefined;
2091
2094
  }>>;
2095
+ historicalAverages: z.ZodOptional<z.ZodObject<{
2096
+ maa: z.ZodOptional<z.ZodObject<{
2097
+ USD: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2098
+ EUR: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2099
+ GBP: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2100
+ }, "strip", z.ZodTypeAny, {
2101
+ EUR?: import("decimal.js").Decimal | undefined;
2102
+ GBP?: import("decimal.js").Decimal | undefined;
2103
+ USD?: import("decimal.js").Decimal | undefined;
2104
+ }, {
2105
+ EUR?: import("decimal.js").Decimal | undefined;
2106
+ GBP?: import("decimal.js").Decimal | undefined;
2107
+ USD?: import("decimal.js").Decimal | undefined;
2108
+ }>>;
2109
+ maaExt: z.ZodOptional<z.ZodObject<{
2110
+ USD: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2111
+ EUR: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2112
+ GBP: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2113
+ }, "strip", z.ZodTypeAny, {
2114
+ EUR?: import("decimal.js").Decimal | undefined;
2115
+ GBP?: import("decimal.js").Decimal | undefined;
2116
+ USD?: import("decimal.js").Decimal | undefined;
2117
+ }, {
2118
+ EUR?: import("decimal.js").Decimal | undefined;
2119
+ GBP?: import("decimal.js").Decimal | undefined;
2120
+ USD?: import("decimal.js").Decimal | undefined;
2121
+ }>>;
2122
+ maaInt: z.ZodOptional<z.ZodObject<{
2123
+ USD: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2124
+ EUR: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2125
+ GBP: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2126
+ }, "strip", z.ZodTypeAny, {
2127
+ EUR?: import("decimal.js").Decimal | undefined;
2128
+ GBP?: import("decimal.js").Decimal | undefined;
2129
+ USD?: import("decimal.js").Decimal | undefined;
2130
+ }, {
2131
+ EUR?: import("decimal.js").Decimal | undefined;
2132
+ GBP?: import("decimal.js").Decimal | undefined;
2133
+ USD?: import("decimal.js").Decimal | undefined;
2134
+ }>>;
2135
+ gmaa: z.ZodOptional<z.ZodObject<{
2136
+ USD: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2137
+ EUR: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2138
+ GBP: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
2139
+ }, "strip", z.ZodTypeAny, {
2140
+ EUR?: import("decimal.js").Decimal | undefined;
2141
+ GBP?: import("decimal.js").Decimal | undefined;
2142
+ USD?: import("decimal.js").Decimal | undefined;
2143
+ }, {
2144
+ EUR?: import("decimal.js").Decimal | undefined;
2145
+ GBP?: import("decimal.js").Decimal | undefined;
2146
+ USD?: import("decimal.js").Decimal | undefined;
2147
+ }>>;
2148
+ }, "strip", z.ZodTypeAny, {
2149
+ maa?: {
2150
+ EUR?: import("decimal.js").Decimal | undefined;
2151
+ GBP?: import("decimal.js").Decimal | undefined;
2152
+ USD?: import("decimal.js").Decimal | undefined;
2153
+ } | undefined;
2154
+ maaExt?: {
2155
+ EUR?: import("decimal.js").Decimal | undefined;
2156
+ GBP?: import("decimal.js").Decimal | undefined;
2157
+ USD?: import("decimal.js").Decimal | undefined;
2158
+ } | undefined;
2159
+ maaInt?: {
2160
+ EUR?: import("decimal.js").Decimal | undefined;
2161
+ GBP?: import("decimal.js").Decimal | undefined;
2162
+ USD?: import("decimal.js").Decimal | undefined;
2163
+ } | undefined;
2164
+ gmaa?: {
2165
+ EUR?: import("decimal.js").Decimal | undefined;
2166
+ GBP?: import("decimal.js").Decimal | undefined;
2167
+ USD?: import("decimal.js").Decimal | undefined;
2168
+ } | undefined;
2169
+ }, {
2170
+ maa?: {
2171
+ EUR?: import("decimal.js").Decimal | undefined;
2172
+ GBP?: import("decimal.js").Decimal | undefined;
2173
+ USD?: import("decimal.js").Decimal | undefined;
2174
+ } | undefined;
2175
+ maaExt?: {
2176
+ EUR?: import("decimal.js").Decimal | undefined;
2177
+ GBP?: import("decimal.js").Decimal | undefined;
2178
+ USD?: import("decimal.js").Decimal | undefined;
2179
+ } | undefined;
2180
+ maaInt?: {
2181
+ EUR?: import("decimal.js").Decimal | undefined;
2182
+ GBP?: import("decimal.js").Decimal | undefined;
2183
+ USD?: import("decimal.js").Decimal | undefined;
2184
+ } | undefined;
2185
+ gmaa?: {
2186
+ EUR?: import("decimal.js").Decimal | undefined;
2187
+ GBP?: import("decimal.js").Decimal | undefined;
2188
+ USD?: import("decimal.js").Decimal | undefined;
2189
+ } | undefined;
2190
+ }>>;
2092
2191
  }, "strip", z.ZodTypeAny, {
2093
2192
  amount?: {
2094
2193
  EUR?: import("decimal.js").Decimal | undefined;
@@ -2122,6 +2221,7 @@ export declare const VaultZodSchema: z.ZodObject<{
2122
2221
  amount?: import("decimal.js").Decimal | undefined;
2123
2222
  riskScore?: number | undefined;
2124
2223
  transactionDate?: Date | undefined;
2224
+ direction?: "EXCHANGE" | "IN" | "OUT" | undefined;
2125
2225
  assets?: string[] | undefined;
2126
2226
  } | undefined;
2127
2227
  originator?: {
@@ -2172,6 +2272,28 @@ export declare const VaultZodSchema: z.ZodObject<{
2172
2272
  maxAmountUsd?: number | undefined;
2173
2273
  } | undefined;
2174
2274
  } | undefined;
2275
+ historicalAverages?: {
2276
+ maa?: {
2277
+ EUR?: import("decimal.js").Decimal | undefined;
2278
+ GBP?: import("decimal.js").Decimal | undefined;
2279
+ USD?: import("decimal.js").Decimal | undefined;
2280
+ } | undefined;
2281
+ maaExt?: {
2282
+ EUR?: import("decimal.js").Decimal | undefined;
2283
+ GBP?: import("decimal.js").Decimal | undefined;
2284
+ USD?: import("decimal.js").Decimal | undefined;
2285
+ } | undefined;
2286
+ maaInt?: {
2287
+ EUR?: import("decimal.js").Decimal | undefined;
2288
+ GBP?: import("decimal.js").Decimal | undefined;
2289
+ USD?: import("decimal.js").Decimal | undefined;
2290
+ } | undefined;
2291
+ gmaa?: {
2292
+ EUR?: import("decimal.js").Decimal | undefined;
2293
+ GBP?: import("decimal.js").Decimal | undefined;
2294
+ USD?: import("decimal.js").Decimal | undefined;
2295
+ } | undefined;
2296
+ } | undefined;
2175
2297
  }, {
2176
2298
  amount?: {
2177
2299
  EUR?: import("decimal.js").Decimal | undefined;
@@ -2205,6 +2327,7 @@ export declare const VaultZodSchema: z.ZodObject<{
2205
2327
  amount?: import("decimal.js").Decimal | undefined;
2206
2328
  riskScore?: number | undefined;
2207
2329
  transactionDate?: Date | undefined;
2330
+ direction?: "EXCHANGE" | "IN" | "OUT" | undefined;
2208
2331
  assets?: string[] | undefined;
2209
2332
  } | undefined;
2210
2333
  originator?: {
@@ -2255,6 +2378,28 @@ export declare const VaultZodSchema: z.ZodObject<{
2255
2378
  maxAmountUsd?: number | undefined;
2256
2379
  } | undefined;
2257
2380
  } | undefined;
2381
+ historicalAverages?: {
2382
+ maa?: {
2383
+ EUR?: import("decimal.js").Decimal | undefined;
2384
+ GBP?: import("decimal.js").Decimal | undefined;
2385
+ USD?: import("decimal.js").Decimal | undefined;
2386
+ } | undefined;
2387
+ maaExt?: {
2388
+ EUR?: import("decimal.js").Decimal | undefined;
2389
+ GBP?: import("decimal.js").Decimal | undefined;
2390
+ USD?: import("decimal.js").Decimal | undefined;
2391
+ } | undefined;
2392
+ maaInt?: {
2393
+ EUR?: import("decimal.js").Decimal | undefined;
2394
+ GBP?: import("decimal.js").Decimal | undefined;
2395
+ USD?: import("decimal.js").Decimal | undefined;
2396
+ } | undefined;
2397
+ gmaa?: {
2398
+ EUR?: import("decimal.js").Decimal | undefined;
2399
+ GBP?: import("decimal.js").Decimal | undefined;
2400
+ USD?: import("decimal.js").Decimal | undefined;
2401
+ } | undefined;
2402
+ } | undefined;
2258
2403
  }>;
2259
2404
  TfheKycSession: z.ZodObject<{
2260
2405
  vcs: z.ZodObject<{
@@ -2988,6 +3133,7 @@ export declare const VaultZodSchema: z.ZodObject<{
2988
3133
  amount?: import("decimal.js").Decimal | undefined;
2989
3134
  riskScore?: number | undefined;
2990
3135
  transactionDate?: Date | undefined;
3136
+ direction?: "EXCHANGE" | "IN" | "OUT" | undefined;
2991
3137
  assets?: string[] | undefined;
2992
3138
  } | undefined;
2993
3139
  originator?: {
@@ -3038,6 +3184,28 @@ export declare const VaultZodSchema: z.ZodObject<{
3038
3184
  maxAmountUsd?: number | undefined;
3039
3185
  } | undefined;
3040
3186
  } | undefined;
3187
+ historicalAverages?: {
3188
+ maa?: {
3189
+ EUR?: import("decimal.js").Decimal | undefined;
3190
+ GBP?: import("decimal.js").Decimal | undefined;
3191
+ USD?: import("decimal.js").Decimal | undefined;
3192
+ } | undefined;
3193
+ maaExt?: {
3194
+ EUR?: import("decimal.js").Decimal | undefined;
3195
+ GBP?: import("decimal.js").Decimal | undefined;
3196
+ USD?: import("decimal.js").Decimal | undefined;
3197
+ } | undefined;
3198
+ maaInt?: {
3199
+ EUR?: import("decimal.js").Decimal | undefined;
3200
+ GBP?: import("decimal.js").Decimal | undefined;
3201
+ USD?: import("decimal.js").Decimal | undefined;
3202
+ } | undefined;
3203
+ gmaa?: {
3204
+ EUR?: import("decimal.js").Decimal | undefined;
3205
+ GBP?: import("decimal.js").Decimal | undefined;
3206
+ USD?: import("decimal.js").Decimal | undefined;
3207
+ } | undefined;
3208
+ } | undefined;
3041
3209
  };
3042
3210
  TfheKycSession: {
3043
3211
  vcs: {
@@ -3327,6 +3495,7 @@ export declare const VaultZodSchema: z.ZodObject<{
3327
3495
  amount?: import("decimal.js").Decimal | undefined;
3328
3496
  riskScore?: number | undefined;
3329
3497
  transactionDate?: Date | undefined;
3498
+ direction?: "EXCHANGE" | "IN" | "OUT" | undefined;
3330
3499
  assets?: string[] | undefined;
3331
3500
  } | undefined;
3332
3501
  originator?: {
@@ -3377,6 +3546,28 @@ export declare const VaultZodSchema: z.ZodObject<{
3377
3546
  maxAmountUsd?: number | undefined;
3378
3547
  } | undefined;
3379
3548
  } | undefined;
3549
+ historicalAverages?: {
3550
+ maa?: {
3551
+ EUR?: import("decimal.js").Decimal | undefined;
3552
+ GBP?: import("decimal.js").Decimal | undefined;
3553
+ USD?: import("decimal.js").Decimal | undefined;
3554
+ } | undefined;
3555
+ maaExt?: {
3556
+ EUR?: import("decimal.js").Decimal | undefined;
3557
+ GBP?: import("decimal.js").Decimal | undefined;
3558
+ USD?: import("decimal.js").Decimal | undefined;
3559
+ } | undefined;
3560
+ maaInt?: {
3561
+ EUR?: import("decimal.js").Decimal | undefined;
3562
+ GBP?: import("decimal.js").Decimal | undefined;
3563
+ USD?: import("decimal.js").Decimal | undefined;
3564
+ } | undefined;
3565
+ gmaa?: {
3566
+ EUR?: import("decimal.js").Decimal | undefined;
3567
+ GBP?: import("decimal.js").Decimal | undefined;
3568
+ USD?: import("decimal.js").Decimal | undefined;
3569
+ } | undefined;
3570
+ } | undefined;
3380
3571
  };
3381
3572
  TfheKycSession: {
3382
3573
  vcs: {
@@ -1 +1 @@
1
- {"version":3,"file":"vault.schema.d.ts","sourceRoot":"../../../../src/vault","sources":["vault.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAgBxB,OAAO,KAAK,EACV,QAAQ,EACR,gBAAgB,EAChB,YAAY,EACZ,oBAAoB,EACpB,YAAY,EACZ,KAAK,EACL,WAAW,EACX,mBAAmB,EACnB,UAAU,EACV,kBAAkB,EACnB,8BAAqB;AAEtB,OAAO,kBAAkB,oDAAiD;AAC1E,OAAO,KAAK,YAAY,6CAA0C;AAClE,OAAO,oBAAoB,sDAAmD;AAC9E,OAAO,KAAK,cAAc,+CAA4C;AACtE,OAAO,cAAc,gDAA6C;AAClE,OAAO,KAAK,QAAQ,yCAAsC;AAC1D,OAAO,wBAAwB,0DAAuD;AACtF,OAAO,KAAK,kBAAkB,mDAAgD;AAC9E,OAAO,qBAAqB,uDAAoD;AAChF,OAAO,KAAK,eAAe,gDAA6C;AAMxE,eAAO,MAAM,gBAAgB;;;;;;CAM5B,CAAC;AACF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"vault.schema.d.ts","sourceRoot":"../../../../src/vault","sources":["vault.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAgBxB,OAAO,KAAK,EACV,QAAQ,EACR,gBAAgB,EAChB,YAAY,EACZ,oBAAoB,EACpB,YAAY,EACZ,KAAK,EACL,WAAW,EACX,mBAAmB,EACnB,UAAU,EACV,kBAAkB,EACnB,8BAAqB;AAEtB,OAAO,kBAAkB,oDAAiD;AAC1E,OAAO,KAAK,YAAY,6CAA0C;AAClE,OAAO,oBAAoB,sDAAmD;AAC9E,OAAO,KAAK,cAAc,+CAA4C;AACtE,OAAO,cAAc,gDAA6C;AAClE,OAAO,KAAK,QAAQ,yCAAsC;AAC1D,OAAO,wBAAwB,0DAAuD;AACtF,OAAO,KAAK,kBAAkB,mDAAgD;AAC9E,OAAO,qBAAqB,uDAAoD;AAChF,OAAO,KAAK,eAAe,gDAA6C;AAMxE,eAAO,MAAM,gBAAgB;;;;;;CAM5B,CAAC;AACF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { d1 as IDImageCredentialSubjectSchema, d3 as ProofOfResidenceCredentialSubjectSchema, d2 as SelfieImageCredentialSubjectSchema, d0 as IDInformationCredentialSubjectSchema, c$ as IDInformationTfheCredentialSubjectSchema, c_ as OLD_AMLScreeningsResultsCredentialSubjectSchema, cS as ID3CredentialSubjectSchema, cT as IDScanCredentialSubjectSchema, cV as IDScanSelfieCredentialSubjectSchema, cU as IDScanPassportCredentialSubjectSchema, ed as _defineProperty, e4 as VaultMetadataLinkZodSchema, cg as QueryId, ch as QueryGroupId, aS as UuidString, ar as BlockchainAddress, ce as ScenarioId, cJ as WorkspaceId, as as String0x, aN as BlockchainSignature, aa as TxHash, cK as WorkflowId, g as EvmChainId, a9 as AddressSchema, aD as EIP155Signature, T as TezosChainId, ah as TezosContractAddress, aP as TezosEntrypointName, ag as TezosImplicitAddress, aI as EdSignature, av as BlockchainNamespace, d4 as GenericVerifiableCredentialSchema, a_ as ISO3CountryCode, ax as SupportedBlockchainNamespaceForSignatureAuth, B as BlockchainId, cM as ExternalCustomerId, cH as AdditionalCustomerInformationParams, a8 as PublicKey } from './vault.schema-06c7ebc0.esm.mjs';
2
+ import { d1 as IDImageCredentialSubjectSchema, d3 as ProofOfResidenceCredentialSubjectSchema, d2 as SelfieImageCredentialSubjectSchema, d0 as IDInformationCredentialSubjectSchema, c$ as IDInformationTfheCredentialSubjectSchema, c_ as OLD_AMLScreeningsResultsCredentialSubjectSchema, cS as ID3CredentialSubjectSchema, cT as IDScanCredentialSubjectSchema, cV as IDScanSelfieCredentialSubjectSchema, cU as IDScanPassportCredentialSubjectSchema, ed as _defineProperty, e4 as VaultMetadataLinkZodSchema, cg as QueryId, ch as QueryGroupId, aS as UuidString, ar as BlockchainAddress, ce as ScenarioId, cJ as WorkspaceId, as as String0x, aN as BlockchainSignature, aa as TxHash, cK as WorkflowId, g as EvmChainId, a9 as AddressSchema, aD as EIP155Signature, T as TezosChainId, ah as TezosContractAddress, aP as TezosEntrypointName, ag as TezosImplicitAddress, aI as EdSignature, av as BlockchainNamespace, d4 as GenericVerifiableCredentialSchema, a_ as ISO3CountryCode, ax as SupportedBlockchainNamespaceForSignatureAuth, B as BlockchainId, cM as ExternalCustomerId, cH as AdditionalCustomerInformationParams, a8 as PublicKey } from './vault.schema-607626e2.esm.mjs';
3
3
 
4
4
  var CredentialSchemas = {
5
5
  ProofOfResidence: ProofOfResidenceCredentialSubjectSchema,
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var zod = require('zod');
4
- var vault_schema = require('./vault.schema-94ffd2d8.cjs.dev.cjs');
4
+ var vault_schema = require('./vault.schema-c507b278.cjs.dev.cjs');
5
5
 
6
6
  var CredentialSchemas = {
7
7
  ProofOfResidence: vault_schema.ProofOfResidenceCredentialSubjectSchema,
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var zod = require('zod');
4
- var vault_schema = require('./vault.schema-771644cb.cjs.prod.cjs');
4
+ var vault_schema = require('./vault.schema-faff845c.cjs.prod.cjs');
5
5
 
6
6
  var CredentialSchemas = {
7
7
  ProofOfResidence: vault_schema.ProofOfResidenceCredentialSubjectSchema,
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var vault_schema = require('./vault.schema-94ffd2d8.cjs.dev.cjs');
5
+ var vault_schema = require('./vault.schema-c507b278.cjs.dev.cjs');
6
6
  var zod = require('zod');
7
- var identityApi_schema = require('./identity-api.schema-4670c94c.cjs.dev.cjs');
8
- var tfheUtilities = require('./tfhe-utilities-d05b2a83.cjs.dev.cjs');
7
+ var identityApi_schema = require('./identity-api.schema-6abb6921.cjs.dev.cjs');
8
+ var tfheUtilities = require('./tfhe-utilities-ee36869f.cjs.dev.cjs');
9
9
  require('nanoid');
10
10
  require('decimal.js');
11
11
 
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var vault_schema = require('./vault.schema-771644cb.cjs.prod.cjs');
5
+ var vault_schema = require('./vault.schema-faff845c.cjs.prod.cjs');
6
6
  var zod = require('zod');
7
- var identityApi_schema = require('./identity-api.schema-25a40938.cjs.prod.cjs');
8
- var tfheUtilities = require('./tfhe-utilities-be752443.cjs.prod.cjs');
7
+ var identityApi_schema = require('./identity-api.schema-c6d12982.cjs.prod.cjs');
8
+ var tfheUtilities = require('./tfhe-utilities-057d82b7.cjs.prod.cjs');
9
9
  require('nanoid');
10
10
  require('decimal.js');
11
11
 
@@ -1,8 +1,8 @@
1
- export { U as ACTIVE_APTOS_CHAIN_IDS, K as ACTIVE_BITCOIN_CHAIN_IDS, a4 as ACTIVE_CARDANO_CHAIN_IDS, k as ACTIVE_COSMOS_CHAIN_IDS, A as ACTIVE_EVM_CHAIN_VALUES, _ as ACTIVE_POLKADOT_CHAIN_IDS, D as ACTIVE_SOLANA_CHAIN_IDS, q as ACTIVE_TEZOS_CHAIN_IDS, a$ as ALPHA_2_COUNTRIES, R as APTOS_CHAIN_IDS, O as APTOS_CHAIN_NAMES, Q as APTOS_CHAIN_NAMES_LIST, b_ as ActionId, bC as ActionPrefix, cH as AdditionalCustomerInformationParams, a9 as AddressSchema, cp as AiAgentId, bJ as AiAgentPrefix, co as AiDocumentId, bI as AiDocumentPrefix, cm as AiExecutionId, bG as AiExecutionPrefix, cn as AiExecutionStepId, bH as AiExecutionStepPrefix, cv as AiMessageId, bN as AiMessagePrefix, cq as AiStepId, bK as AiStepPrefix, b0 as Alpha2Country, dQ as AmlResults, bV as AppId, bd as AppPrefix, ac as AptosAddress, V as AptosChainId, aE as AptosSignature, J as BITCOIN_CHAIN_IDS, H as BITCOIN_CHAIN_NAMES, I as BITCOIN_CHAIN_NAMES_LIST, au as BLOCKCHAIN_NAMESPACES, aC as BLOCKCHAIN_NAMESPACE_TO_ADDRESS_URL, aB as BLOCKCHAIN_NAMESPACE_TO_NAME, aA as BLOCKCHAIN_NAME_TO_NAMESPACE, aq as BitcoinAddress, am as BitcoinBech32Address, L as BitcoinChainId, ak as BitcoinP2PKHAddress, al as BitcoinP2SHAddress, ap as BitcoinTestnetBech32Address, an as BitcoinTestnetP2PKHAddress, ao as BitcoinTestnetP2SHAddress, ar as BlockchainAddress, B as BlockchainId, av as BlockchainNamespace, aN as BlockchainSignature, a3 as CARDANO_CHAIN_IDS, a1 as CARDANO_CHAIN_NAMES, a2 as CARDANO_CHAIN_NAMES_LIST, j as COSMOS_CHAIN_IDS, C as COSMOS_CHAIN_NAMES, i as COSMOS_CHAIN_NAMES_LIST, aj as CardanoAddress, a5 as CardanoChainId, aM as CardanoSignature, bW as ChallengeId, be as ChallengePrefix, ct as ChatId, bL as ChatPrefix, af as CosmosAddress, l as CosmosChainId, aH as CosmosSignature, b3 as CountryName, aZ as CryptoCode, aY as CryptoCodes, aX as CurrencyCode, aW as CurrencyCodes, cL as CustomerId, bY as CustomerScreeningId, bg as CustomerScreeningPrefix, dM as DEFAULT_FIAT_CURRENCY, ay as DISPLAYED_BLOCKCHAIN_NAMESPACES, dV as DataLinkTypeZodSchema, dT as DataLinkVersionZodSchema, dR as DetectedDuplicates, az as DisplayedBlockchainNamespace, aD as EIP155Signature, aQ as ENVS, E as EVM_BLOCK_TIME, f as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, aI as EdSignature, bT as EmailId, bb as EmailPrefix, aR as EnvironmentSchema, g as EvmChainId, cM as ExternalCustomerId, cw as FLOW_TYPES, cx as FlowType, aO as FunctionCallData, e8 as GenericVaultDataLinkZodSchema, e7 as GenericVaultEmbeddedLinkZodSchema, e5 as GenericVaultPointerLinkZodSchema, e6 as GenericVaultSearchLinkZodSchema, d4 as GenericVerifiableCredentialSchema, at as HexadecimalSchema, dx as HumanReadableTransactionReviewStatus, dw as HumanReadableTransactionReviewStatuses, dz as HumanReadableTransactionStatusMapping, da as ID3CredentialSchema, cS as ID3CredentialSubjectSchema, cA as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, cC as IDENTITY_DOCUMENT_OPTIONS, d7 as IDImageCredentialSchema, d1 as IDImageCredentialSubjectSchema, d6 as IDInformationCredentialSchema, d0 as IDInformationCredentialSubjectSchema, d5 as IDInformationTfheCredentialSchema, c$ as IDInformationTfheCredentialSubjectSchema, db as IDScanCredentialSchema, cT as IDScanCredentialSubjectSchema, dc as IDScanPassportCredentialSchema, cU as IDScanPassportCredentialSubjectSchema, dd as IDScanSelfieCredentialSchema, cV as IDScanSelfieCredentialSubjectSchema, a_ as ISO3CountryCode, cG as Identifier, cO as IdentityAppV2Web2JWT, cN as IdentityAppV2Web3JWT, cB as IdentityDocumentCountryListOption, cD as IdentityDocumentOptionsType, bS as IdentityId, ba as IdentityPrefix, cP as IdentityWidgetAccessToken_NEW, cQ as IdentityWidgetSessionToken, cc as InstitutionExtractedInfosId, bw as InstitutionExtractedInfosPrefix, cb as InstitutionId, bv as InstitutionPrefix, aV as IpAddress, cf as ListId, bz as ListPrefix, cs as MemberId, cu as MessageId, bM as MessagePrefix, b$ as MetaAlertId, bj as MetaAlertPrefix, v as NEXERA_ACTIVE_STARKNET_CHAIN_IDS, M as NEXERA_APTOS_CHAINS, G as NEXERA_BITCOIN_CHAINS, a0 as NEXERA_CARDANO_CHAINS, h as NEXERA_COSMOS_CHAINS, a as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAINS_ID, b as NEXERA_EVM_CHAIN_NAMES, c as NEXERA_EVM_CHAIN_NAMES_LIST, W as NEXERA_POLKADOT_CHAINS, w as NEXERA_SOLANA_CHAINS, s as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_IDS, t as NEXERA_STARKNET_CHAIN_NAMES, m as NEXERA_TEZOS_CHAINS, p as NEXERA_TEZOS_CHAIN_IDS, n as NEXERA_TEZOS_CHAIN_NAMES, o as NEXERA_TEZOS_CHAIN_NAMES_LIST, e as NexeraEvmChains, N as NonTestnetBlockchainId, di as OLD_AMLScreeningsResultsCredentialSchema, c_ as OLD_AMLScreeningsResultsCredentialSubjectSchema, de as OLD_IDImageCredentialSchema, cW as OLD_IDImageCredentialSubjectSchema, df as OLD_IDInformationCredentialSchema, cX as OLD_IDInformationCredentialSubjectSchema, dg as OLD_ProofOfResidenceCredentialSchema, cY as OLD_ProofOfResidenceCredentialSubjectSchema, dh as OLD_SelfieImageCredentialSchema, cZ as OLD_SelfieImageCredentialSubjectSchema, cI as OrganizationId, aT as OtpCode, aK as P2Signature, cE as PERSONAL_INFORMATION_FIELDS, Z as POLKADOT_CHAIN_IDS, X as POLKADOT_CHAIN_NAMES, Y as POLKADOT_CHAIN_NAMES_LIST, P as POLYGON_NETWORK_NAMES, aU as PUBLIC_SERVICES_SCHEMA_MAP, dH as PaymentType, dG as PaymentTypes, cF as PersonalInformationFieldsIdentityDocuments, ae as PolkadotAddress, $ as PolkadotChainId, aG as PolkadotSignature, r as PolygonNetworkNames, a7 as PrivateKey, d9 as ProofOfResidenceCredentialSchema, d3 as ProofOfResidenceCredentialSubjectSchema, a8 as PublicKey, ch as QueryGroupId, bB as QueryGroupPrefix, cg as QueryId, bA as QueryPrefix, z as SOLANA_CHAIN_IDS, x as SOLANA_CHAIN_NAMES, y as SOLANA_CHAIN_NAMES_LIST, aw as SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH, ce as ScenarioId, by as ScenarioPrefix, ci as ScorechainAnalysisId, bi as ScorechainAnalysisPrefix, b7 as ScorechainCountry, e9 as ScorechainEntityRecord, d8 as SelfieImageCredentialSchema, d2 as SelfieImageCredentialSubjectSchema, dW as Separator, F as SolanaChainId, aJ as SpSignature, cl as SsssChunkId, bF as SsssChunkPrefix, ck as SsssShareId, bE as SsssSharePrefix, ad as StarknetAddress, S as StarknetChainId, aF as StarknetSignature, bR as StorageId, b9 as StoragePrefix, as as String0x, ax as SupportedBlockchainNamespaceForSignatureAuth, dN as TRANSACTIONS_STATS_CURRENCIES, dj as TRANSACTION_CHARTS, dl as TRANSACTION_TABLE_COLUMNS, bZ as TagId, bh as TagPrefix, c0 as TagsToEntityId, bk as TagsToEntityPrefix, bX as TestId, bf as TestPrefix, ai as TezosAddress, T as TezosChainId, ah as TezosContractAddress, aP as TezosEntrypointName, ag as TezosImplicitAddress, aL as TezosSignature, c3 as TransactionActivityId, bn as TransactionActivityPrefix, c1 as TransactionAddressesId, bl as TransactionAddressesPrefix, cd as TransactionAmountId, bx as TransactionAmountPrefix, dL as TransactionAmountsFieldName, dK as TransactionAmountsFieldNames, dD as TransactionCurrencyCode, dC as TransactionCurrencyCodes, dP as TransactionDataEventObject, dB as TransactionDirection, dA as TransactionDirections, c8 as TransactionExtractedInfosId, bs as TransactionExtractedInfosPrefix, c4 as TransactionFeesId, bo as TransactionFeesPrefix, c2 as TransactionId, c7 as TransactionInfosId, br as TransactionInfosPrefix, ca as TransactionMethodExtractedInfosId, bu as TransactionMethodExtractedInfosPrefix, c9 as TransactionMethodsId, bt as TransactionMethodsPrefix, c6 as TransactionPartiesId, bq as TransactionPartiesPrefix, dJ as TransactionPartiesType, dI as TransactionPartiesTypes, bm as TransactionPrefix, dF as TransactionProvider, dE as TransactionProviders, c5 as TransactionReviewId, bp as TransactionReviewPrefix, dv as TransactionReviewStatus, du as TransactionReviewStatuses, dt as TransactionRiskLevel, ds as TransactionRiskLevels, dO as TransactionStatsCurrency, dy as TransactionStatusMapping, dm as TransactionTableColumn, dp as TransactionType, dr as TransactionTypeWithAll, dn as TransactionTypes, dq as TransactionTypesWithAll, dk as TransactionsChartType, aa as TxHash, aS as UuidString, d_ as VaultJsonSchemas, e4 as VaultMetadataLinkZodSchema, e2 as VaultPointerKeyMapZodSchema, e3 as VaultQueryMapZodSchema, e0 as VaultSchemaIdZodSchema, e1 as VaultSchemaPathsZodSchema, d$ as VaultZodSchema, cz as VerificationMode, cy as VerificationModes, bU as WalletId, bc as WalletPrefix, ea as WalletScreeningData, ec as WalletScreeningProvider, eb as WalletScreeningProviders, cR as Web2CreateSessionParams, cK as WorkflowId, cj as WorkflowSessionAttributeId, bD as WorkflowSessionAttributePrefix, bO as WorkflowSessionId, cJ as WorkspaceId, dU as allDataLinkTypes, dS as allDataLinkVersions, b2 as countryISO2toISO3Mapping, b1 as countryISO3toISO2Mapping, bP as createBrandedSchemaId, bQ as createBrandedSchemaIdWithParams, cr as generateId, dX as generateZodObjectPaths, a6 as isValidAddress, b4 as isoCountriesNameFromISO2, b5 as isoCountriesNameFromISO3, b6 as parseISO3CountryCode, dY as resolvePathOnDataSchema, dZ as resolvePathOnMapSchema, b8 as scorechainCountriesNameFromISO2, ab as shortBlockchainAddress } from './vault.schema-06c7ebc0.esm.mjs';
1
+ export { U as ACTIVE_APTOS_CHAIN_IDS, K as ACTIVE_BITCOIN_CHAIN_IDS, a4 as ACTIVE_CARDANO_CHAIN_IDS, k as ACTIVE_COSMOS_CHAIN_IDS, A as ACTIVE_EVM_CHAIN_VALUES, _ as ACTIVE_POLKADOT_CHAIN_IDS, D as ACTIVE_SOLANA_CHAIN_IDS, q as ACTIVE_TEZOS_CHAIN_IDS, a$ as ALPHA_2_COUNTRIES, R as APTOS_CHAIN_IDS, O as APTOS_CHAIN_NAMES, Q as APTOS_CHAIN_NAMES_LIST, b_ as ActionId, bC as ActionPrefix, cH as AdditionalCustomerInformationParams, a9 as AddressSchema, cp as AiAgentId, bJ as AiAgentPrefix, co as AiDocumentId, bI as AiDocumentPrefix, cm as AiExecutionId, bG as AiExecutionPrefix, cn as AiExecutionStepId, bH as AiExecutionStepPrefix, cv as AiMessageId, bN as AiMessagePrefix, cq as AiStepId, bK as AiStepPrefix, b0 as Alpha2Country, dQ as AmlResults, bV as AppId, bd as AppPrefix, ac as AptosAddress, V as AptosChainId, aE as AptosSignature, J as BITCOIN_CHAIN_IDS, H as BITCOIN_CHAIN_NAMES, I as BITCOIN_CHAIN_NAMES_LIST, au as BLOCKCHAIN_NAMESPACES, aC as BLOCKCHAIN_NAMESPACE_TO_ADDRESS_URL, aB as BLOCKCHAIN_NAMESPACE_TO_NAME, aA as BLOCKCHAIN_NAME_TO_NAMESPACE, aq as BitcoinAddress, am as BitcoinBech32Address, L as BitcoinChainId, ak as BitcoinP2PKHAddress, al as BitcoinP2SHAddress, ap as BitcoinTestnetBech32Address, an as BitcoinTestnetP2PKHAddress, ao as BitcoinTestnetP2SHAddress, ar as BlockchainAddress, B as BlockchainId, av as BlockchainNamespace, aN as BlockchainSignature, a3 as CARDANO_CHAIN_IDS, a1 as CARDANO_CHAIN_NAMES, a2 as CARDANO_CHAIN_NAMES_LIST, j as COSMOS_CHAIN_IDS, C as COSMOS_CHAIN_NAMES, i as COSMOS_CHAIN_NAMES_LIST, aj as CardanoAddress, a5 as CardanoChainId, aM as CardanoSignature, bW as ChallengeId, be as ChallengePrefix, ct as ChatId, bL as ChatPrefix, af as CosmosAddress, l as CosmosChainId, aH as CosmosSignature, b3 as CountryName, aZ as CryptoCode, aY as CryptoCodes, aX as CurrencyCode, aW as CurrencyCodes, cL as CustomerId, bY as CustomerScreeningId, bg as CustomerScreeningPrefix, dM as DEFAULT_FIAT_CURRENCY, ay as DISPLAYED_BLOCKCHAIN_NAMESPACES, dV as DataLinkTypeZodSchema, dT as DataLinkVersionZodSchema, dR as DetectedDuplicates, az as DisplayedBlockchainNamespace, aD as EIP155Signature, aQ as ENVS, E as EVM_BLOCK_TIME, f as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, aI as EdSignature, bT as EmailId, bb as EmailPrefix, aR as EnvironmentSchema, g as EvmChainId, cM as ExternalCustomerId, cw as FLOW_TYPES, cx as FlowType, aO as FunctionCallData, e8 as GenericVaultDataLinkZodSchema, e7 as GenericVaultEmbeddedLinkZodSchema, e5 as GenericVaultPointerLinkZodSchema, e6 as GenericVaultSearchLinkZodSchema, d4 as GenericVerifiableCredentialSchema, at as HexadecimalSchema, dx as HumanReadableTransactionReviewStatus, dw as HumanReadableTransactionReviewStatuses, dz as HumanReadableTransactionStatusMapping, da as ID3CredentialSchema, cS as ID3CredentialSubjectSchema, cA as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, cC as IDENTITY_DOCUMENT_OPTIONS, d7 as IDImageCredentialSchema, d1 as IDImageCredentialSubjectSchema, d6 as IDInformationCredentialSchema, d0 as IDInformationCredentialSubjectSchema, d5 as IDInformationTfheCredentialSchema, c$ as IDInformationTfheCredentialSubjectSchema, db as IDScanCredentialSchema, cT as IDScanCredentialSubjectSchema, dc as IDScanPassportCredentialSchema, cU as IDScanPassportCredentialSubjectSchema, dd as IDScanSelfieCredentialSchema, cV as IDScanSelfieCredentialSubjectSchema, a_ as ISO3CountryCode, cG as Identifier, cO as IdentityAppV2Web2JWT, cN as IdentityAppV2Web3JWT, cB as IdentityDocumentCountryListOption, cD as IdentityDocumentOptionsType, bS as IdentityId, ba as IdentityPrefix, cP as IdentityWidgetAccessToken_NEW, cQ as IdentityWidgetSessionToken, cc as InstitutionExtractedInfosId, bw as InstitutionExtractedInfosPrefix, cb as InstitutionId, bv as InstitutionPrefix, aV as IpAddress, cf as ListId, bz as ListPrefix, cs as MemberId, cu as MessageId, bM as MessagePrefix, b$ as MetaAlertId, bj as MetaAlertPrefix, v as NEXERA_ACTIVE_STARKNET_CHAIN_IDS, M as NEXERA_APTOS_CHAINS, G as NEXERA_BITCOIN_CHAINS, a0 as NEXERA_CARDANO_CHAINS, h as NEXERA_COSMOS_CHAINS, a as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAINS_ID, b as NEXERA_EVM_CHAIN_NAMES, c as NEXERA_EVM_CHAIN_NAMES_LIST, W as NEXERA_POLKADOT_CHAINS, w as NEXERA_SOLANA_CHAINS, s as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_IDS, t as NEXERA_STARKNET_CHAIN_NAMES, m as NEXERA_TEZOS_CHAINS, p as NEXERA_TEZOS_CHAIN_IDS, n as NEXERA_TEZOS_CHAIN_NAMES, o as NEXERA_TEZOS_CHAIN_NAMES_LIST, e as NexeraEvmChains, N as NonTestnetBlockchainId, di as OLD_AMLScreeningsResultsCredentialSchema, c_ as OLD_AMLScreeningsResultsCredentialSubjectSchema, de as OLD_IDImageCredentialSchema, cW as OLD_IDImageCredentialSubjectSchema, df as OLD_IDInformationCredentialSchema, cX as OLD_IDInformationCredentialSubjectSchema, dg as OLD_ProofOfResidenceCredentialSchema, cY as OLD_ProofOfResidenceCredentialSubjectSchema, dh as OLD_SelfieImageCredentialSchema, cZ as OLD_SelfieImageCredentialSubjectSchema, cI as OrganizationId, aT as OtpCode, aK as P2Signature, cE as PERSONAL_INFORMATION_FIELDS, Z as POLKADOT_CHAIN_IDS, X as POLKADOT_CHAIN_NAMES, Y as POLKADOT_CHAIN_NAMES_LIST, P as POLYGON_NETWORK_NAMES, aU as PUBLIC_SERVICES_SCHEMA_MAP, dH as PaymentType, dG as PaymentTypes, cF as PersonalInformationFieldsIdentityDocuments, ae as PolkadotAddress, $ as PolkadotChainId, aG as PolkadotSignature, r as PolygonNetworkNames, a7 as PrivateKey, d9 as ProofOfResidenceCredentialSchema, d3 as ProofOfResidenceCredentialSubjectSchema, a8 as PublicKey, ch as QueryGroupId, bB as QueryGroupPrefix, cg as QueryId, bA as QueryPrefix, z as SOLANA_CHAIN_IDS, x as SOLANA_CHAIN_NAMES, y as SOLANA_CHAIN_NAMES_LIST, aw as SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH, ce as ScenarioId, by as ScenarioPrefix, ci as ScorechainAnalysisId, bi as ScorechainAnalysisPrefix, b7 as ScorechainCountry, e9 as ScorechainEntityRecord, d8 as SelfieImageCredentialSchema, d2 as SelfieImageCredentialSubjectSchema, dW as Separator, F as SolanaChainId, aJ as SpSignature, cl as SsssChunkId, bF as SsssChunkPrefix, ck as SsssShareId, bE as SsssSharePrefix, ad as StarknetAddress, S as StarknetChainId, aF as StarknetSignature, bR as StorageId, b9 as StoragePrefix, as as String0x, ax as SupportedBlockchainNamespaceForSignatureAuth, dN as TRANSACTIONS_STATS_CURRENCIES, dj as TRANSACTION_CHARTS, dl as TRANSACTION_TABLE_COLUMNS, bZ as TagId, bh as TagPrefix, c0 as TagsToEntityId, bk as TagsToEntityPrefix, bX as TestId, bf as TestPrefix, ai as TezosAddress, T as TezosChainId, ah as TezosContractAddress, aP as TezosEntrypointName, ag as TezosImplicitAddress, aL as TezosSignature, c3 as TransactionActivityId, bn as TransactionActivityPrefix, c1 as TransactionAddressesId, bl as TransactionAddressesPrefix, cd as TransactionAmountId, bx as TransactionAmountPrefix, dL as TransactionAmountsFieldName, dK as TransactionAmountsFieldNames, dD as TransactionCurrencyCode, dC as TransactionCurrencyCodes, dP as TransactionDataEventObject, dB as TransactionDirection, dA as TransactionDirections, c8 as TransactionExtractedInfosId, bs as TransactionExtractedInfosPrefix, c4 as TransactionFeesId, bo as TransactionFeesPrefix, c2 as TransactionId, c7 as TransactionInfosId, br as TransactionInfosPrefix, ca as TransactionMethodExtractedInfosId, bu as TransactionMethodExtractedInfosPrefix, c9 as TransactionMethodsId, bt as TransactionMethodsPrefix, c6 as TransactionPartiesId, bq as TransactionPartiesPrefix, dJ as TransactionPartiesType, dI as TransactionPartiesTypes, bm as TransactionPrefix, dF as TransactionProvider, dE as TransactionProviders, c5 as TransactionReviewId, bp as TransactionReviewPrefix, dv as TransactionReviewStatus, du as TransactionReviewStatuses, dt as TransactionRiskLevel, ds as TransactionRiskLevels, dO as TransactionStatsCurrency, dy as TransactionStatusMapping, dm as TransactionTableColumn, dp as TransactionType, dr as TransactionTypeWithAll, dn as TransactionTypes, dq as TransactionTypesWithAll, dk as TransactionsChartType, aa as TxHash, aS as UuidString, d_ as VaultJsonSchemas, e4 as VaultMetadataLinkZodSchema, e2 as VaultPointerKeyMapZodSchema, e3 as VaultQueryMapZodSchema, e0 as VaultSchemaIdZodSchema, e1 as VaultSchemaPathsZodSchema, d$ as VaultZodSchema, cz as VerificationMode, cy as VerificationModes, bU as WalletId, bc as WalletPrefix, ea as WalletScreeningData, ec as WalletScreeningProvider, eb as WalletScreeningProviders, cR as Web2CreateSessionParams, cK as WorkflowId, cj as WorkflowSessionAttributeId, bD as WorkflowSessionAttributePrefix, bO as WorkflowSessionId, cJ as WorkspaceId, dU as allDataLinkTypes, dS as allDataLinkVersions, b2 as countryISO2toISO3Mapping, b1 as countryISO3toISO2Mapping, bP as createBrandedSchemaId, bQ as createBrandedSchemaIdWithParams, cr as generateId, dX as generateZodObjectPaths, a6 as isValidAddress, b4 as isoCountriesNameFromISO2, b5 as isoCountriesNameFromISO3, b6 as parseISO3CountryCode, dY as resolvePathOnDataSchema, dZ as resolvePathOnMapSchema, b8 as scorechainCountriesNameFromISO2, ab as shortBlockchainAddress } from './vault.schema-607626e2.esm.mjs';
2
2
  import { z } from 'zod';
3
- import { C as CredentialTypes } from './identity-api.schema-bdf74232.esm.mjs';
4
- export { Z as ACTION_STATUSES, X as ACTION_TRIGGERS, bk as ARRAY_OPERATORS, b2 as AUTHORIZATION_REQUEST_MESSAGE_TYPES, H as AVAILABLE_FLOWS, an as AbbreviatedWorkflowScenario, al as Action, _ as ActionStatus, Y as ActionTrigger, W as ActionType, $ as ActionValue, by as AllCredentialValues, cc as AllScenarioExecutionAuthorizationData, c4 as AnyTxAuthDataSignatureResponse, c7 as AnyTxAuthInputJsSdk, bZ as ApiTezosTxAuthInput, bV as ApiTxAuthInput, bl as ArrayOperator, ba as AuthQrCodeData, aI as AuthSession, aJ as AuthSessionData, b5 as AuthorizationRequestMessage, b4 as AuthorizationRequestMessageType, b3 as AuthorizationRequestMessageTypes, b8 as AuthorizationResponseMessage, J as AvailableFlow, bq as BOOLEAN_OPERATORS, a8 as BackwardsCompatibleScenarioType, a7 as BackwardsCompatibleScenarioTypes, a9 as BaseQueryResponse, B as BasicCustomerContactInformation, br as BooleanOperator, a$ as CIRCUIT_IDS, k as CUSTOMERS_CHARTS, o as CUSTOMER_AUTOMATION_REASONS, m as CUSTOMER_TABLE_COLUMNS, bJ as ChallengeQuerySchema, aK as ChallengeResponse, b0 as CircuitId, r as CloseScreenNotification, aq as ComplianceImplementationStepsInput, cb as CreateAuthRequestProps, ap as CreateTemplateScenario, cn as CredentialMediaType, ci as CredentialNames, b9 as CredentialQrCodeData, ch as CredentialSchemas, cl as CredentialType, C as CredentialTypes, h as CustomerOnboardingLevel, g as CustomerOnboardingLevels, p as CustomerPersonalInformation, j as CustomerStatus, i as CustomerStatuses, n as CustomerTableColumn, c as CustomerType, b as CustomerTypes, l as CustomersChartType, bs as DATE_OPERATORS, L as DataAvailableOnStart, bt as DateOperator, c5 as Eip155TxAuthInputJsSdk, ab as ExecuteQueryResponse, c3 as ExtendedTezosTxAuthDataSignatureResponse, c1 as ExtendedTezosTxAuthInput, c2 as ExtendedTxAuthDataSignatureResponse, c0 as ExtendedTxAuthInput, aH as GenerateWalletChallengeRequest, as as GetCredentialsRequest, at as GetCredentialsResponse, aN as GetCustomerStatusRequest, aS as GetCustomerStatusResponse, b$ as GetTezosTxAuthDataSignatureResponse, bX as GetTxAuthDataSignatureResponse, aB as GetTxAuthSigRequest, aD as GetTxAuthSigRequestTezos, aC as GetTxAuthSigResponse, aE as GetTxAuthSigResponseTezos, aV as HostMessage, aF as HostRequestMessage, U as HostResponseMessage, bx as IDInformationTfhe, aT as IdentityAppMessage, aW as IdentityMessage, A as IdentityNotificationMessage, G as IdentityRequestMessage, aG as IdentityResponseMessage, aO as IdentitySdkMessage, aP as IdentitySdkMessageWithIdentifier, aU as IdentityWallet, D as InitialDataRequest, M as InitialDataResponse, I as IsVerifiedNotification, az as IsVerifiedRequest, aA as IsVerifiedResponse, f as KybOnboardingLevel, e as KybOnboardingLevels, s as KycCompletionData, t as KycCompletionNotification, d as KycOnboardingLevel, K as KycOnboardingLevels, aZ as MediaType, a_ as MediaTypePID, bo as NUMERIC_OPERATORS, cj as NexeraCredentialType, bp as NumericOperator, bK as OLD_CHALLENGE_QUERY_OPERATORS, bL as OLD_ChallengeQueryOperator, bO as OLD_ChallengeQueryOperatorToOperator, bG as OLD_ChallengeQuerySchema, bQ as OLD_QueryCredentialType, bP as OLD_QueryCredentialTypes, bg as OPERATORS, y as OcvSdkInitialized, O as OffChainScenarioExecutionData, aa as OffChainZKPRuleResult, v as OnChainScenarioExecutionData, bh as Operator, bM as OperatorMappings, bN as OperatorToOLD_ChallengeQueryOperator, bF as PartialQueryConfigSimplified, P as PolygonIdInitialized, av as PolygonIdRequest, au as PolygonIdRequestData, ax as PolygonIdResponse, aw as PolygonIdResponseData, ca as PrivacyPreservingMonitoring, b6 as ProofData, be as QUERY_LOGIC_OPERATOR, bb as QrCodeLinkWithSchemaType, bz as QueriesOptions, bC as QueryConfigSimplified, bB as QueryConfigTfhe, bI as QueryCredentialType, bH as QueryCredentialTypes, bD as QueryGroupConfigSimplified, bf as QueryLogicOperator, bA as QueryType, aX as RequiredDataRowSchema, aY as RequiredVerificationData, a as RiskScoreType, R as RiskScoreTypes, ac as RuleEngineResponse, u as RuleEngineScenarioExecutionData, bE as RuleResultQueryConfig, af as RuleResultStatus, ag as RuleResultStatusLabels, ae as RuleResultStatuses, V as SCENARIO_ACTION_TYPES, cd as SCENARIO_AUTHORIZATION_STATUSES, bm as STRING_OPERATORS, bu as SUPPORTED_TYPES, am as Scenario, S as ScenarioAuthorizationData, ce as ScenarioAuthorizationStatus, w as ScenarioExecutionData, x as ScenarioExecutionNotification, ad as ScenarioExecutionResponse, a3 as ScenarioMode, a2 as ScenarioModes, a6 as ScenarioSchema, a5 as ScenarioStatus, a4 as ScenarioStatuses, a1 as ScenarioType, a0 as ScenarioTypes, ah as SdkVerificationOutput, q as SdkVerificationResponseSchema, F as SendTransactionRequest, E as SignatureRequest, N as SignatureResponse, ar as SimplifiedCredential, z as StartCompletedNotification, ay as StartFlowRequest, bn as StringOperator, bv as SupportedType, bw as SupportedTypes, ao as TemplateScenario, bY as TezosTxAuthInput, c6 as TezosTxAuthInputJsSdk, b_ as TezosTxSignatureResponse, T as TransactionData, Q as TransactionResponse, aR as TxAuthDataSignatureGatingError, aM as TxAuthDataSignatureGatingRequest, aQ as TxAuthDataSignatureResponse, bU as TxAuthInput, bW as TxSignatureResponse, cm as VerifiableCredential, ak as VerificationOutput, aj as VerificationSessionStatus, ai as VerificationSessionStatuses, cg as VerifyWalletChallengeRequest, aL as WalletSignResponse, cf as WalletSignatureResponse, bi as ZKPOperator, c8 as ZKPRequest, c9 as ZKPRequestFromZKVerifier, b1 as ZeroKnowledgeProofRequest, b7 as ZeroKnowledgeProofResponse, ck as getCredentialName, bS as getOldCredentialPath, bR as getOldCredentialType, bT as oldCredentialPathToDataLink, bj as operatorDisplayMap, bc as parseIden3Message, bd as parseSessionIdFromUrl } from './identity-api.schema-bdf74232.esm.mjs';
5
- export { I as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from './tfhe-utilities-9a4bc5f6.esm.mjs';
3
+ import { C as CredentialTypes } from './identity-api.schema-63ceffe7.esm.mjs';
4
+ export { Z as ACTION_STATUSES, X as ACTION_TRIGGERS, bk as ARRAY_OPERATORS, b2 as AUTHORIZATION_REQUEST_MESSAGE_TYPES, H as AVAILABLE_FLOWS, an as AbbreviatedWorkflowScenario, al as Action, _ as ActionStatus, Y as ActionTrigger, W as ActionType, $ as ActionValue, by as AllCredentialValues, cc as AllScenarioExecutionAuthorizationData, c4 as AnyTxAuthDataSignatureResponse, c7 as AnyTxAuthInputJsSdk, bZ as ApiTezosTxAuthInput, bV as ApiTxAuthInput, bl as ArrayOperator, ba as AuthQrCodeData, aI as AuthSession, aJ as AuthSessionData, b5 as AuthorizationRequestMessage, b4 as AuthorizationRequestMessageType, b3 as AuthorizationRequestMessageTypes, b8 as AuthorizationResponseMessage, J as AvailableFlow, bq as BOOLEAN_OPERATORS, a8 as BackwardsCompatibleScenarioType, a7 as BackwardsCompatibleScenarioTypes, a9 as BaseQueryResponse, B as BasicCustomerContactInformation, br as BooleanOperator, a$ as CIRCUIT_IDS, k as CUSTOMERS_CHARTS, o as CUSTOMER_AUTOMATION_REASONS, m as CUSTOMER_TABLE_COLUMNS, bJ as ChallengeQuerySchema, aK as ChallengeResponse, b0 as CircuitId, r as CloseScreenNotification, aq as ComplianceImplementationStepsInput, cb as CreateAuthRequestProps, ap as CreateTemplateScenario, cn as CredentialMediaType, ci as CredentialNames, b9 as CredentialQrCodeData, ch as CredentialSchemas, cl as CredentialType, C as CredentialTypes, h as CustomerOnboardingLevel, g as CustomerOnboardingLevels, p as CustomerPersonalInformation, j as CustomerStatus, i as CustomerStatuses, n as CustomerTableColumn, c as CustomerType, b as CustomerTypes, l as CustomersChartType, bs as DATE_OPERATORS, L as DataAvailableOnStart, bt as DateOperator, c5 as Eip155TxAuthInputJsSdk, ab as ExecuteQueryResponse, c3 as ExtendedTezosTxAuthDataSignatureResponse, c1 as ExtendedTezosTxAuthInput, c2 as ExtendedTxAuthDataSignatureResponse, c0 as ExtendedTxAuthInput, aH as GenerateWalletChallengeRequest, as as GetCredentialsRequest, at as GetCredentialsResponse, aN as GetCustomerStatusRequest, aS as GetCustomerStatusResponse, b$ as GetTezosTxAuthDataSignatureResponse, bX as GetTxAuthDataSignatureResponse, aB as GetTxAuthSigRequest, aD as GetTxAuthSigRequestTezos, aC as GetTxAuthSigResponse, aE as GetTxAuthSigResponseTezos, aV as HostMessage, aF as HostRequestMessage, U as HostResponseMessage, bx as IDInformationTfhe, aT as IdentityAppMessage, aW as IdentityMessage, A as IdentityNotificationMessage, G as IdentityRequestMessage, aG as IdentityResponseMessage, aO as IdentitySdkMessage, aP as IdentitySdkMessageWithIdentifier, aU as IdentityWallet, D as InitialDataRequest, M as InitialDataResponse, I as IsVerifiedNotification, az as IsVerifiedRequest, aA as IsVerifiedResponse, f as KybOnboardingLevel, e as KybOnboardingLevels, s as KycCompletionData, t as KycCompletionNotification, d as KycOnboardingLevel, K as KycOnboardingLevels, aZ as MediaType, a_ as MediaTypePID, bo as NUMERIC_OPERATORS, cj as NexeraCredentialType, bp as NumericOperator, bK as OLD_CHALLENGE_QUERY_OPERATORS, bL as OLD_ChallengeQueryOperator, bO as OLD_ChallengeQueryOperatorToOperator, bG as OLD_ChallengeQuerySchema, bQ as OLD_QueryCredentialType, bP as OLD_QueryCredentialTypes, bg as OPERATORS, y as OcvSdkInitialized, O as OffChainScenarioExecutionData, aa as OffChainZKPRuleResult, v as OnChainScenarioExecutionData, bh as Operator, bM as OperatorMappings, bN as OperatorToOLD_ChallengeQueryOperator, bF as PartialQueryConfigSimplified, P as PolygonIdInitialized, av as PolygonIdRequest, au as PolygonIdRequestData, ax as PolygonIdResponse, aw as PolygonIdResponseData, ca as PrivacyPreservingMonitoring, b6 as ProofData, be as QUERY_LOGIC_OPERATOR, bb as QrCodeLinkWithSchemaType, bz as QueriesOptions, bC as QueryConfigSimplified, bB as QueryConfigTfhe, bI as QueryCredentialType, bH as QueryCredentialTypes, bD as QueryGroupConfigSimplified, bf as QueryLogicOperator, bA as QueryType, aX as RequiredDataRowSchema, aY as RequiredVerificationData, a as RiskScoreType, R as RiskScoreTypes, ac as RuleEngineResponse, u as RuleEngineScenarioExecutionData, bE as RuleResultQueryConfig, af as RuleResultStatus, ag as RuleResultStatusLabels, ae as RuleResultStatuses, V as SCENARIO_ACTION_TYPES, cd as SCENARIO_AUTHORIZATION_STATUSES, bm as STRING_OPERATORS, bu as SUPPORTED_TYPES, am as Scenario, S as ScenarioAuthorizationData, ce as ScenarioAuthorizationStatus, w as ScenarioExecutionData, x as ScenarioExecutionNotification, ad as ScenarioExecutionResponse, a3 as ScenarioMode, a2 as ScenarioModes, a6 as ScenarioSchema, a5 as ScenarioStatus, a4 as ScenarioStatuses, a1 as ScenarioType, a0 as ScenarioTypes, ah as SdkVerificationOutput, q as SdkVerificationResponseSchema, F as SendTransactionRequest, E as SignatureRequest, N as SignatureResponse, ar as SimplifiedCredential, z as StartCompletedNotification, ay as StartFlowRequest, bn as StringOperator, bv as SupportedType, bw as SupportedTypes, ao as TemplateScenario, bY as TezosTxAuthInput, c6 as TezosTxAuthInputJsSdk, b_ as TezosTxSignatureResponse, T as TransactionData, Q as TransactionResponse, aR as TxAuthDataSignatureGatingError, aM as TxAuthDataSignatureGatingRequest, aQ as TxAuthDataSignatureResponse, bU as TxAuthInput, bW as TxSignatureResponse, cm as VerifiableCredential, ak as VerificationOutput, aj as VerificationSessionStatus, ai as VerificationSessionStatuses, cg as VerifyWalletChallengeRequest, aL as WalletSignResponse, cf as WalletSignatureResponse, bi as ZKPOperator, c8 as ZKPRequest, c9 as ZKPRequestFromZKVerifier, b1 as ZeroKnowledgeProofRequest, b7 as ZeroKnowledgeProofResponse, ck as getCredentialName, bS as getOldCredentialPath, bR as getOldCredentialType, bT as oldCredentialPathToDataLink, bj as operatorDisplayMap, bc as parseIden3Message, bd as parseSessionIdFromUrl } from './identity-api.schema-63ceffe7.esm.mjs';
5
+ export { I as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from './tfhe-utilities-25b1c53b.esm.mjs';
6
6
  import 'nanoid';
7
7
  import 'decimal.js';
8
8
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.88.0",
3
+ "version": "2.90.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var vault_schema = require('./vault.schema-771644cb.cjs.prod.cjs');
4
- var identityApi_schema = require('./identity-api.schema-25a40938.cjs.prod.cjs');
3
+ var vault_schema = require('./vault.schema-faff845c.cjs.prod.cjs');
4
+ var identityApi_schema = require('./identity-api.schema-c6d12982.cjs.prod.cjs');
5
5
 
6
6
  var VC_JSON_SCHEMA_MAP = {
7
7
  ProofOfResidence: {
@@ -1,5 +1,5 @@
1
- import { ee as _toConsumableArray } from './vault.schema-06c7ebc0.esm.mjs';
2
- import { bv as SupportedType, bo as NUMERIC_OPERATORS, bk as ARRAY_OPERATORS, bq as BOOLEAN_OPERATORS, bm as STRING_OPERATORS } from './identity-api.schema-bdf74232.esm.mjs';
1
+ import { ee as _toConsumableArray } from './vault.schema-607626e2.esm.mjs';
2
+ import { bv as SupportedType, bo as NUMERIC_OPERATORS, bk as ARRAY_OPERATORS, bq as BOOLEAN_OPERATORS, bm as STRING_OPERATORS } from './identity-api.schema-63ceffe7.esm.mjs';
3
3
 
4
4
  var VC_JSON_SCHEMA_MAP = {
5
5
  ProofOfResidence: {
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var vault_schema = require('./vault.schema-94ffd2d8.cjs.dev.cjs');
4
- var identityApi_schema = require('./identity-api.schema-4670c94c.cjs.dev.cjs');
3
+ var vault_schema = require('./vault.schema-c507b278.cjs.dev.cjs');
4
+ var identityApi_schema = require('./identity-api.schema-6abb6921.cjs.dev.cjs');
5
5
 
6
6
  var VC_JSON_SCHEMA_MAP = {
7
7
  ProofOfResidence: {
@@ -8735,6 +8735,14 @@ var TransactionJsonSchema = {
8735
8735
  "fiat"
8736
8736
  ]
8737
8737
  },
8738
+ direction: {
8739
+ type: "string",
8740
+ "enum": [
8741
+ "IN",
8742
+ "OUT",
8743
+ "EXCHANGE"
8744
+ ]
8745
+ },
8738
8746
  assets: {
8739
8747
  type: "array",
8740
8748
  items: {
@@ -10755,6 +10763,72 @@ var TransactionJsonSchema = {
10755
10763
  "riskLevel"
10756
10764
  ],
10757
10765
  additionalProperties: false
10766
+ },
10767
+ historicalAverages: {
10768
+ type: "object",
10769
+ properties: {
10770
+ maa: {
10771
+ type: "object",
10772
+ properties: {
10773
+ USD: {
10774
+ description: "decimal"
10775
+ },
10776
+ EUR: {
10777
+ description: "decimal"
10778
+ },
10779
+ GBP: {
10780
+ description: "decimal"
10781
+ }
10782
+ },
10783
+ additionalProperties: false
10784
+ },
10785
+ maaExt: {
10786
+ type: "object",
10787
+ properties: {
10788
+ USD: {
10789
+ description: "decimal"
10790
+ },
10791
+ EUR: {
10792
+ description: "decimal"
10793
+ },
10794
+ GBP: {
10795
+ description: "decimal"
10796
+ }
10797
+ },
10798
+ additionalProperties: false
10799
+ },
10800
+ maaInt: {
10801
+ type: "object",
10802
+ properties: {
10803
+ USD: {
10804
+ description: "decimal"
10805
+ },
10806
+ EUR: {
10807
+ description: "decimal"
10808
+ },
10809
+ GBP: {
10810
+ description: "decimal"
10811
+ }
10812
+ },
10813
+ additionalProperties: false
10814
+ },
10815
+ gmaa: {
10816
+ type: "object",
10817
+ properties: {
10818
+ USD: {
10819
+ description: "decimal"
10820
+ },
10821
+ EUR: {
10822
+ description: "decimal"
10823
+ },
10824
+ GBP: {
10825
+ description: "decimal"
10826
+ }
10827
+ },
10828
+ additionalProperties: false
10829
+ }
10830
+ },
10831
+ additionalProperties: false
10758
10832
  }
10759
10833
  },
10760
10834
  additionalProperties: false
@@ -10872,6 +10946,11 @@ var TransactionStats = z.object({
10872
10946
  var AML_RESULTS = ["AML Hits", "PEP Hits", "Sanction Hits", "Adverse Media"];
10873
10947
  var AmlResults = z["enum"](AML_RESULTS);
10874
10948
  var DecimalSchema = z["instanceof"](Decimal).describe("decimal");
10949
+ var AmountByCurrencyBreakdown = z.object({
10950
+ USD: DecimalSchema.optional(),
10951
+ EUR: DecimalSchema.optional(),
10952
+ GBP: DecimalSchema.optional()
10953
+ });
10875
10954
  var PartySchema = z.object({
10876
10955
  countryOfResidence: ISO3CountryCode.optional(),
10877
10956
  nationality: ISO3CountryCode.optional(),
@@ -10881,17 +10960,14 @@ var PartySchema = z.object({
10881
10960
  address: z.string().optional()
10882
10961
  }).optional();
10883
10962
  var TransactionZodSchema = z.object({
10884
- amount: z.object({
10885
- USD: DecimalSchema.optional(),
10886
- EUR: DecimalSchema.optional(),
10887
- GBP: DecimalSchema.optional()
10888
- }).optional(),
10963
+ amount: AmountByCurrencyBreakdown.optional(),
10889
10964
  event: z.object({
10890
10965
  transactionDate: z.coerce.date().optional(),
10891
10966
  amount: DecimalSchema.optional(),
10892
10967
  riskScore: z.number().optional(),
10893
10968
  riskLevel: z.string().optional(),
10894
10969
  type: TransactionType.optional(),
10970
+ direction: TransactionDirection.optional(),
10895
10971
  assets: z.array(z.string()).optional()
10896
10972
  }).optional(),
10897
10973
  originator: PartySchema,
@@ -10907,7 +10983,13 @@ var TransactionZodSchema = z.object({
10907
10983
  amlScreening: z.object({
10908
10984
  amlResults: AmlResults.array().optional()
10909
10985
  }).optional(),
10910
- walletScreening: WalletScreeningData.optional()
10986
+ walletScreening: WalletScreeningData.optional(),
10987
+ historicalAverages: z.object({
10988
+ maa: AmountByCurrencyBreakdown.optional(),
10989
+ maaExt: AmountByCurrencyBreakdown.optional(),
10990
+ maaInt: AmountByCurrencyBreakdown.optional(),
10991
+ gmaa: AmountByCurrencyBreakdown.optional()
10992
+ }).optional()
10911
10993
  });
10912
10994
 
10913
10995
  var VaultJsonSchemas = {