@nexeraid/identity-schemas 1.12.9-dev → 1.12.11-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 (32) hide show
  1. package/dist/declarations/src/customer.schema.d.ts +93 -0
  2. package/dist/declarations/src/customer.schema.d.ts.map +1 -0
  3. package/dist/declarations/src/identity/app-requests.schema.d.ts +10 -10
  4. package/dist/declarations/src/identity/execute-scenario.schema.d.ts +1 -0
  5. package/dist/declarations/src/identity/execute-scenario.schema.d.ts.map +1 -1
  6. package/dist/declarations/src/identity/host-requests.schema.d.ts +36 -56
  7. package/dist/declarations/src/identity/host-requests.schema.d.ts.map +1 -1
  8. package/dist/declarations/src/identity/identity-v2.schema.d.ts +76 -56
  9. package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
  10. package/dist/declarations/src/identity/kyc.schema.d.ts +22 -32
  11. package/dist/declarations/src/identity/kyc.schema.d.ts.map +1 -1
  12. package/dist/declarations/src/identity/txAuthData.schema.d.ts +30 -48
  13. package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
  14. package/dist/declarations/src/index.d.ts +2 -0
  15. package/dist/declarations/src/index.d.ts.map +1 -1
  16. package/dist/frontend-utilities.schema-205058ee.cjs.dev.js +2129 -0
  17. package/dist/frontend-utilities.schema-43c7bf6d.esm.js +2124 -0
  18. package/dist/frontend-utilities.schema-9cf8924c.cjs.prod.js +2129 -0
  19. package/dist/{identity-api.schema-38f27d6b.esm.js → identity-api.schema-0bb85c0c.esm.js} +106 -13
  20. package/dist/{identity-api.schema-46a66e5e.cjs.dev.js → identity-api.schema-1f84a316.cjs.prod.js} +125 -12
  21. package/dist/{identity-api.schema-b63a1396.cjs.prod.js → identity-api.schema-986819d9.cjs.dev.js} +125 -12
  22. package/dist/nexeraid-identity-schemas.cjs.dev.js +48 -1
  23. package/dist/nexeraid-identity-schemas.cjs.prod.js +48 -1
  24. package/dist/nexeraid-identity-schemas.esm.js +3 -2
  25. package/dist/package.json +1 -1
  26. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +3 -1
  27. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +3 -1
  28. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  29. package/package.json +1 -1
  30. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +6 -2124
  31. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +6 -2124
  32. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2125
@@ -39,22 +39,19 @@ export declare const TxSignatureResponse: z.ZodObject<{
39
39
  blockExpiration: number;
40
40
  }>;
41
41
  export type TxSignatureResponse = z.infer<typeof TxSignatureResponse>;
42
- export declare const GetTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{
43
- blockExpiration: z.ZodOptional<z.ZodNumber>;
44
- }, "strip", z.ZodTypeAny, {
45
- blockExpiration?: number | undefined;
46
- }, {
47
- blockExpiration?: number | undefined;
48
- }>, z.ZodUnion<[z.ZodObject<{
42
+ export declare const GetTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
49
43
  isAuthorized: z.ZodLiteral<true>;
50
44
  signature: z.ZodEffects<z.ZodString, string, string>;
51
45
  payload: z.ZodString;
46
+ blockExpiration: z.ZodNumber;
52
47
  }, "strip", z.ZodTypeAny, {
53
48
  signature: string;
49
+ blockExpiration: number;
54
50
  isAuthorized: true;
55
51
  payload: string;
56
52
  }, {
57
53
  signature: string;
54
+ blockExpiration: number;
58
55
  isAuthorized: true;
59
56
  payload: string;
60
57
  }>, z.ZodObject<{
@@ -66,7 +63,7 @@ export declare const GetTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObje
66
63
  }, {
67
64
  isAuthorized: false;
68
65
  errorMessage?: any;
69
- }>]>>;
66
+ }>]>;
70
67
  export type GetTxAuthDataSignatureResponse = z.infer<typeof GetTxAuthDataSignatureResponse>;
71
68
  export declare const TezosTxAuthInput: z.ZodObject<{
72
69
  chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>;
@@ -105,20 +102,17 @@ export declare const TezosTxSignatureResponse: z.ZodObject<{
105
102
  blockExpiration: number;
106
103
  }>;
107
104
  export type TezosTxSignatureResponse = z.infer<typeof TezosTxSignatureResponse>;
108
- export declare const GetTezosTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{
109
- blockExpiration: z.ZodOptional<z.ZodNumber>;
110
- }, "strip", z.ZodTypeAny, {
111
- blockExpiration?: number | undefined;
112
- }, {
113
- blockExpiration?: number | undefined;
114
- }>, z.ZodUnion<[z.ZodObject<{
105
+ export declare const GetTezosTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
115
106
  isAuthorized: z.ZodLiteral<true>;
116
107
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
108
+ blockExpiration: z.ZodNumber;
117
109
  }, "strip", z.ZodTypeAny, {
118
110
  signature: `edsig${string}`;
111
+ blockExpiration: number;
119
112
  isAuthorized: true;
120
113
  }, {
121
114
  signature: string;
115
+ blockExpiration: number;
122
116
  isAuthorized: true;
123
117
  }>, z.ZodObject<{
124
118
  isAuthorized: z.ZodLiteral<false>;
@@ -129,7 +123,7 @@ export declare const GetTezosTxAuthDataSignatureResponse: z.ZodIntersection<z.Zo
129
123
  }, {
130
124
  isAuthorized: false;
131
125
  errorMessage?: any;
132
- }>]>>;
126
+ }>]>;
133
127
  export type GetTezosTxAuthDataSignatureResponse = z.infer<typeof GetTezosTxAuthDataSignatureResponse>;
134
128
  export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{
135
129
  chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, unknown>;
@@ -275,22 +269,19 @@ export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
275
269
  userAddress: string;
276
270
  }>>]>;
277
271
  export type AnyTxAuthInput = z.infer<typeof AnyTxAuthInput>;
278
- export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
279
- blockExpiration: z.ZodOptional<z.ZodNumber>;
280
- }, "strip", z.ZodTypeAny, {
281
- blockExpiration?: number | undefined;
282
- }, {
283
- blockExpiration?: number | undefined;
284
- }>, z.ZodUnion<[z.ZodObject<{
272
+ export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
285
273
  isAuthorized: z.ZodLiteral<true>;
286
274
  signature: z.ZodEffects<z.ZodString, string, string>;
287
275
  payload: z.ZodString;
276
+ blockExpiration: z.ZodNumber;
288
277
  }, "strip", z.ZodTypeAny, {
289
278
  signature: string;
279
+ blockExpiration: number;
290
280
  isAuthorized: true;
291
281
  payload: string;
292
282
  }, {
293
283
  signature: string;
284
+ blockExpiration: number;
294
285
  isAuthorized: true;
295
286
  payload: string;
296
287
  }>, z.ZodObject<{
@@ -302,7 +293,7 @@ export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodInterse
302
293
  }, {
303
294
  isAuthorized: false;
304
295
  errorMessage?: any;
305
- }>]>>, z.ZodObject<{
296
+ }>]>, z.ZodObject<{
306
297
  namespace: z.ZodLiteral<"eip155">;
307
298
  userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
308
299
  }, "strip", z.ZodTypeAny, {
@@ -313,20 +304,17 @@ export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodInterse
313
304
  userAddress: string;
314
305
  }>>;
315
306
  export type ExtendedTxSignatureResponse = z.infer<typeof ExtendedTxSignatureResponse>;
316
- export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
317
- blockExpiration: z.ZodOptional<z.ZodNumber>;
318
- }, "strip", z.ZodTypeAny, {
319
- blockExpiration?: number | undefined;
320
- }, {
321
- blockExpiration?: number | undefined;
322
- }>, z.ZodUnion<[z.ZodObject<{
307
+ export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
323
308
  isAuthorized: z.ZodLiteral<true>;
324
309
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
310
+ blockExpiration: z.ZodNumber;
325
311
  }, "strip", z.ZodTypeAny, {
326
312
  signature: `edsig${string}`;
313
+ blockExpiration: number;
327
314
  isAuthorized: true;
328
315
  }, {
329
316
  signature: string;
317
+ blockExpiration: number;
330
318
  isAuthorized: true;
331
319
  }>, z.ZodObject<{
332
320
  isAuthorized: z.ZodLiteral<false>;
@@ -337,7 +325,7 @@ export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIn
337
325
  }, {
338
326
  isAuthorized: false;
339
327
  errorMessage?: any;
340
- }>]>>, z.ZodObject<{
328
+ }>]>, z.ZodObject<{
341
329
  namespace: z.ZodLiteral<"tezos">;
342
330
  userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
343
331
  }, "strip", z.ZodTypeAny, {
@@ -348,22 +336,19 @@ export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIn
348
336
  userAddress: string;
349
337
  }>>;
350
338
  export type ExtendedTezosTxSignatureResponse = z.infer<typeof ExtendedTezosTxSignatureResponse>;
351
- export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
352
- blockExpiration: z.ZodOptional<z.ZodNumber>;
353
- }, "strip", z.ZodTypeAny, {
354
- blockExpiration?: number | undefined;
355
- }, {
356
- blockExpiration?: number | undefined;
357
- }>, z.ZodUnion<[z.ZodObject<{
339
+ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
358
340
  isAuthorized: z.ZodLiteral<true>;
359
341
  signature: z.ZodEffects<z.ZodString, string, string>;
360
342
  payload: z.ZodString;
343
+ blockExpiration: z.ZodNumber;
361
344
  }, "strip", z.ZodTypeAny, {
362
345
  signature: string;
346
+ blockExpiration: number;
363
347
  isAuthorized: true;
364
348
  payload: string;
365
349
  }, {
366
350
  signature: string;
351
+ blockExpiration: number;
367
352
  isAuthorized: true;
368
353
  payload: string;
369
354
  }>, z.ZodObject<{
@@ -375,7 +360,7 @@ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.Zod
375
360
  }, {
376
361
  isAuthorized: false;
377
362
  errorMessage?: any;
378
- }>]>>, z.ZodObject<{
363
+ }>]>, z.ZodObject<{
379
364
  namespace: z.ZodLiteral<"eip155">;
380
365
  userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
381
366
  }, "strip", z.ZodTypeAny, {
@@ -384,20 +369,17 @@ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.Zod
384
369
  }, {
385
370
  namespace: "eip155";
386
371
  userAddress: string;
387
- }>>, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
388
- blockExpiration: z.ZodOptional<z.ZodNumber>;
389
- }, "strip", z.ZodTypeAny, {
390
- blockExpiration?: number | undefined;
391
- }, {
392
- blockExpiration?: number | undefined;
393
- }>, z.ZodUnion<[z.ZodObject<{
372
+ }>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
394
373
  isAuthorized: z.ZodLiteral<true>;
395
374
  signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
375
+ blockExpiration: z.ZodNumber;
396
376
  }, "strip", z.ZodTypeAny, {
397
377
  signature: `edsig${string}`;
378
+ blockExpiration: number;
398
379
  isAuthorized: true;
399
380
  }, {
400
381
  signature: string;
382
+ blockExpiration: number;
401
383
  isAuthorized: true;
402
384
  }>, z.ZodObject<{
403
385
  isAuthorized: z.ZodLiteral<false>;
@@ -408,7 +390,7 @@ export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.Zod
408
390
  }, {
409
391
  isAuthorized: false;
410
392
  errorMessage?: any;
411
- }>]>>, z.ZodObject<{
393
+ }>]>, z.ZodObject<{
412
394
  namespace: z.ZodLiteral<"tezos">;
413
395
  userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
414
396
  }, "strip", z.ZodTypeAny, {
@@ -1 +1 @@
1
- {"version":3,"file":"txAuthData.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["txAuthData.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;EAStB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;KAgBxC,CAAC;AACJ,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAMF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;KAe7C,CAAC;AACJ,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,mCAAmC,CAC3C,CAAC;AAMF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAK/B,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKpC,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAM1C,CAAC;AACJ,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,gCAAgC,CACxC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
1
+ {"version":3,"file":"txAuthData.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["txAuthData.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;EAStB,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;IAWzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AAMF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;IAU9C,CAAC;AACH,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CACvD,OAAO,mCAAmC,CAC3C,CAAC;AAMF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAK/B,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AACtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKpC,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKvC,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAM1C,CAAC;AACJ,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,gCAAgC,CACxC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAGjC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
@@ -6,4 +6,6 @@ export * from "./identity-ids.schema.js";
6
6
  export * from "./nexeraSSID.schema.js";
7
7
  export * from "./media.schema.js";
8
8
  export * from "./identity/index.js";
9
+ export * from "./customer.schema.js";
10
+ export * from "./verifiable-credentials/index.js";
9
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"../../../src","sources":["index.ts"],"names":[],"mappings":"AACA,+CAA4C;AAC5C,uCAAoC;AACpC,mCAAgC;AAChC,sCAAmC;AACnC,yCAAsC;AACtC,uCAAoC;AACpC,kCAA+B;AAC/B,oCAA2B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"../../../src","sources":["index.ts"],"names":[],"mappings":"AACA,+CAA4C;AAC5C,uCAAoC;AACpC,mCAAgC;AAChC,sCAAmC;AACnC,yCAAsC;AACtC,uCAAoC;AACpC,kCAA+B;AAC/B,oCAA2B;AAC3B,qCAAkC;AAClC,kDAAyC"}