@nexeraid/identity-schemas 2.155.0-dev → 2.157.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 (32) hide show
  1. package/dist/{CoinMarketCap.schema-a36f0949.cjs.prod.cjs → CoinMarketCap.schema-00a140f7.cjs.prod.cjs} +15 -15
  2. package/dist/{CoinMarketCap.schema-569d8d3f.esm.mjs → CoinMarketCap.schema-d83953d0.esm.mjs} +15 -15
  3. package/dist/{CoinMarketCap.schema-a3d871f8.cjs.dev.cjs → CoinMarketCap.schema-dd6c8043.cjs.dev.cjs} +15 -15
  4. package/dist/declarations/src/identity/app-requests.schema.d.ts +57 -57
  5. package/dist/declarations/src/identity/host-requests.schema.d.ts +50 -50
  6. package/dist/declarations/src/identity/identity-v2.schema.d.ts +13 -13
  7. package/dist/declarations/src/identity/kyc.schema.d.ts +31 -31
  8. package/dist/declarations/src/identity/polygon-id.schema.d.ts +10 -10
  9. package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +108 -108
  10. package/dist/{identity-api.schema-362b1c56.esm.mjs → identity-api.schema-42245964.esm.mjs} +1 -1
  11. package/dist/{identity-api.schema-6c70e3aa.cjs.prod.cjs → identity-api.schema-443adcc0.cjs.prod.cjs} +1 -1
  12. package/dist/{identity-api.schema-65dd6440.cjs.dev.cjs → identity-api.schema-f786c437.cjs.dev.cjs} +1 -1
  13. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +2 -2
  14. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +2 -2
  15. package/dist/nexeraid-identity-schemas.esm.mjs +3 -3
  16. package/dist/package.json +2 -2
  17. package/dist/{tfhe-utilities-34760e2f.cjs.prod.cjs → tfhe-utilities-03f0250c.cjs.prod.cjs} +1 -1
  18. package/dist/{tfhe-utilities-28701323.cjs.dev.cjs → tfhe-utilities-5c744359.cjs.dev.cjs} +1 -1
  19. package/dist/{tfhe-utilities-90193a9c.esm.mjs → tfhe-utilities-e4157a93.esm.mjs} +1 -1
  20. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +1 -1
  21. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +1 -1
  22. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +1 -1
  23. package/package.json +2 -2
  24. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +2 -2
  25. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +2 -2
  26. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +2 -2
  27. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +2 -2
  28. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +2 -2
  29. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +2 -2
  30. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +2 -2
  31. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +2 -2
  32. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +2 -2
@@ -2,7 +2,7 @@
2
2
 
3
3
  var zod = require('zod');
4
4
  var vault_schema = require('./vault.schema-516f8cf7.cjs.prod.cjs');
5
- var identityApi_schema = require('./identity-api.schema-6c70e3aa.cjs.prod.cjs');
5
+ var identityApi_schema = require('./identity-api.schema-443adcc0.cjs.prod.cjs');
6
6
 
7
7
  var IpQualityAnalysisRequest = zod.z.object({
8
8
  apiKey: zod.z.string().nullish(),
@@ -2125,29 +2125,29 @@ var SumSubSimilarApplicantsSchema = zod.z.object({
2125
2125
  similarApplicants: zod.z.array(SumSubSimilarApplicantSchema).optional()
2126
2126
  });
2127
2127
  var SumSubImageIdDocDef = zod.z.object({
2128
- country: zod.z.string(),
2129
- idDocType: zod.z.string(),
2130
- idDocSubType: zod.z.string().nullable().optional()
2128
+ country: zod.z.string().optional(),
2129
+ idDocType: zod.z.string().optional(),
2130
+ idDocSubType: zod.z.string()
2131
2131
  });
2132
2132
  var SumSubImageFileMetadataResolution = zod.z.object({
2133
- width: zod.z.number(),
2134
- height: zod.z.number()
2133
+ width: zod.z.number().optional(),
2134
+ height: zod.z.number().optional()
2135
2135
  });
2136
2136
  var SumSubImageFileMetadata = zod.z.object({
2137
- fileName: zod.z.string(),
2138
- fileType: zod.z.string(),
2139
- fileSize: zod.z.number(),
2137
+ fileName: zod.z.string().optional(),
2138
+ fileType: zod.z.string().optional(),
2139
+ fileSize: zod.z.number().optional(),
2140
2140
  resolution: SumSubImageFileMetadataResolution.nullish()
2141
2141
  });
2142
2142
  var ApplicantImageItem = zod.z.object({
2143
2143
  id: zod.z.string(),
2144
- previewId: zod.z.string(),
2145
- addedDate: zod.z.string(),
2146
- fileMetadata: SumSubImageFileMetadata,
2144
+ previewId: zod.z.string().optional(),
2145
+ addedDate: zod.z.string().optional(),
2146
+ fileMetadata: SumSubImageFileMetadata.optional(),
2147
2147
  idDocDef: SumSubImageIdDocDef,
2148
- reviewResult: SumSubImageReviewResultSchema,
2149
- attemptId: zod.z.string(),
2150
- source: zod.z.string(),
2148
+ reviewResult: SumSubImageReviewResultSchema.optional(),
2149
+ attemptId: zod.z.string().optional(),
2150
+ source: zod.z.string().optional(),
2151
2151
  deactivated: zod.z["boolean"]().optional()
2152
2152
  });
2153
2153
  var ApplicantImages = zod.z.object({
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { b4 as Alpha2Country, aW as UuidString, fv as _toConsumableArray, fB as ScoringAnalysisRequest, fC as WorkflowsScoringAnalysisRequest, b2 as ISO3CountryCode, fx as _slicedToArray, co as IdentityId, at as BlockchainAddress, ay as BlockchainNamespace, ck as WorkflowSessionId, dk as WorkspaceId, dj as OrganizationId, bo as CustomerStatus, fu as _defineProperty, dH as ProofOfResidenceCredentialSubjectSchema, bp as BasicCustomerContactInformation, da as VerificationMode } from './vault.schema-88946b11.esm.mjs';
3
- import { _ as SdkVerificationOutput, aU as QrCodeLinkWithSchemaType, c4 as CredentialType } from './identity-api.schema-362b1c56.esm.mjs';
3
+ import { _ as SdkVerificationOutput, aU as QrCodeLinkWithSchemaType, c4 as CredentialType } from './identity-api.schema-42245964.esm.mjs';
4
4
 
5
5
  var IpQualityAnalysisRequest = z.object({
6
6
  apiKey: z.string().nullish(),
@@ -2123,29 +2123,29 @@ var SumSubSimilarApplicantsSchema = z.object({
2123
2123
  similarApplicants: z.array(SumSubSimilarApplicantSchema).optional()
2124
2124
  });
2125
2125
  var SumSubImageIdDocDef = z.object({
2126
- country: z.string(),
2127
- idDocType: z.string(),
2128
- idDocSubType: z.string().nullable().optional()
2126
+ country: z.string().optional(),
2127
+ idDocType: z.string().optional(),
2128
+ idDocSubType: z.string()
2129
2129
  });
2130
2130
  var SumSubImageFileMetadataResolution = z.object({
2131
- width: z.number(),
2132
- height: z.number()
2131
+ width: z.number().optional(),
2132
+ height: z.number().optional()
2133
2133
  });
2134
2134
  var SumSubImageFileMetadata = z.object({
2135
- fileName: z.string(),
2136
- fileType: z.string(),
2137
- fileSize: z.number(),
2135
+ fileName: z.string().optional(),
2136
+ fileType: z.string().optional(),
2137
+ fileSize: z.number().optional(),
2138
2138
  resolution: SumSubImageFileMetadataResolution.nullish()
2139
2139
  });
2140
2140
  var ApplicantImageItem = z.object({
2141
2141
  id: z.string(),
2142
- previewId: z.string(),
2143
- addedDate: z.string(),
2144
- fileMetadata: SumSubImageFileMetadata,
2142
+ previewId: z.string().optional(),
2143
+ addedDate: z.string().optional(),
2144
+ fileMetadata: SumSubImageFileMetadata.optional(),
2145
2145
  idDocDef: SumSubImageIdDocDef,
2146
- reviewResult: SumSubImageReviewResultSchema,
2147
- attemptId: z.string(),
2148
- source: z.string(),
2146
+ reviewResult: SumSubImageReviewResultSchema.optional(),
2147
+ attemptId: z.string().optional(),
2148
+ source: z.string().optional(),
2149
2149
  deactivated: z["boolean"]().optional()
2150
2150
  });
2151
2151
  var ApplicantImages = z.object({
@@ -2,7 +2,7 @@
2
2
 
3
3
  var zod = require('zod');
4
4
  var vault_schema = require('./vault.schema-b3e91b84.cjs.dev.cjs');
5
- var identityApi_schema = require('./identity-api.schema-65dd6440.cjs.dev.cjs');
5
+ var identityApi_schema = require('./identity-api.schema-f786c437.cjs.dev.cjs');
6
6
 
7
7
  var IpQualityAnalysisRequest = zod.z.object({
8
8
  apiKey: zod.z.string().nullish(),
@@ -2125,29 +2125,29 @@ var SumSubSimilarApplicantsSchema = zod.z.object({
2125
2125
  similarApplicants: zod.z.array(SumSubSimilarApplicantSchema).optional()
2126
2126
  });
2127
2127
  var SumSubImageIdDocDef = zod.z.object({
2128
- country: zod.z.string(),
2129
- idDocType: zod.z.string(),
2130
- idDocSubType: zod.z.string().nullable().optional()
2128
+ country: zod.z.string().optional(),
2129
+ idDocType: zod.z.string().optional(),
2130
+ idDocSubType: zod.z.string()
2131
2131
  });
2132
2132
  var SumSubImageFileMetadataResolution = zod.z.object({
2133
- width: zod.z.number(),
2134
- height: zod.z.number()
2133
+ width: zod.z.number().optional(),
2134
+ height: zod.z.number().optional()
2135
2135
  });
2136
2136
  var SumSubImageFileMetadata = zod.z.object({
2137
- fileName: zod.z.string(),
2138
- fileType: zod.z.string(),
2139
- fileSize: zod.z.number(),
2137
+ fileName: zod.z.string().optional(),
2138
+ fileType: zod.z.string().optional(),
2139
+ fileSize: zod.z.number().optional(),
2140
2140
  resolution: SumSubImageFileMetadataResolution.nullish()
2141
2141
  });
2142
2142
  var ApplicantImageItem = zod.z.object({
2143
2143
  id: zod.z.string(),
2144
- previewId: zod.z.string(),
2145
- addedDate: zod.z.string(),
2146
- fileMetadata: SumSubImageFileMetadata,
2144
+ previewId: zod.z.string().optional(),
2145
+ addedDate: zod.z.string().optional(),
2146
+ fileMetadata: SumSubImageFileMetadata.optional(),
2147
2147
  idDocDef: SumSubImageIdDocDef,
2148
- reviewResult: SumSubImageReviewResultSchema,
2149
- attemptId: zod.z.string(),
2150
- source: zod.z.string(),
2148
+ reviewResult: SumSubImageReviewResultSchema.optional(),
2149
+ attemptId: zod.z.string().optional(),
2150
+ source: zod.z.string().optional(),
2151
2151
  deactivated: zod.z["boolean"]().optional()
2152
2152
  });
2153
2153
  var ApplicantImages = zod.z.object({
@@ -18,17 +18,17 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
18
18
  did_doc: z.ZodOptional<z.ZodAny>;
19
19
  message: z.ZodOptional<z.ZodString>;
20
20
  scope: z.ZodArray<z.ZodObject<{
21
- id: z.ZodNumber;
21
+ id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
22
22
  circuitId: z.ZodString;
23
23
  optional: z.ZodOptional<z.ZodBoolean>;
24
24
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
25
25
  }, "strip", z.ZodTypeAny, {
26
- id: number;
26
+ id: string | number;
27
27
  query: Record<string, any>;
28
28
  circuitId: string;
29
29
  optional?: boolean | undefined;
30
30
  }, {
31
- id: number;
31
+ id: string | number;
32
32
  query: Record<string, any>;
33
33
  circuitId: string;
34
34
  optional?: boolean | undefined;
@@ -36,7 +36,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
36
36
  }, "strip", z.ZodTypeAny, {
37
37
  callbackUrl: string;
38
38
  scope: {
39
- id: number;
39
+ id: string | number;
40
40
  query: Record<string, any>;
41
41
  circuitId: string;
42
42
  optional?: boolean | undefined;
@@ -47,7 +47,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
47
47
  }, {
48
48
  callbackUrl: string;
49
49
  scope: {
50
- id: number;
50
+ id: string | number;
51
51
  query: Record<string, any>;
52
52
  circuitId: string;
53
53
  optional?: boolean | undefined;
@@ -64,7 +64,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
64
64
  body: {
65
65
  callbackUrl: string;
66
66
  scope: {
67
- id: number;
67
+ id: string | number;
68
68
  query: Record<string, any>;
69
69
  circuitId: string;
70
70
  optional?: boolean | undefined;
@@ -83,7 +83,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
83
83
  body: {
84
84
  callbackUrl: string;
85
85
  scope: {
86
- id: number;
86
+ id: string | number;
87
87
  query: Record<string, any>;
88
88
  circuitId: string;
89
89
  optional?: boolean | undefined;
@@ -339,7 +339,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
339
339
  body: {
340
340
  callbackUrl: string;
341
341
  scope: {
342
- id: number;
342
+ id: string | number;
343
343
  query: Record<string, any>;
344
344
  circuitId: string;
345
345
  optional?: boolean | undefined;
@@ -412,7 +412,7 @@ export declare const ScenarioAuthorizationData: z.ZodObject<{
412
412
  body: {
413
413
  callbackUrl: string;
414
414
  scope: {
415
- id: number;
415
+ id: string | number;
416
416
  query: Record<string, any>;
417
417
  circuitId: string;
418
418
  optional?: boolean | undefined;
@@ -794,17 +794,17 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
794
794
  did_doc: z.ZodOptional<z.ZodAny>;
795
795
  message: z.ZodOptional<z.ZodString>;
796
796
  scope: z.ZodArray<z.ZodObject<{
797
- id: z.ZodNumber;
797
+ id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
798
798
  circuitId: z.ZodString;
799
799
  optional: z.ZodOptional<z.ZodBoolean>;
800
800
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
801
801
  }, "strip", z.ZodTypeAny, {
802
- id: number;
802
+ id: string | number;
803
803
  query: Record<string, any>;
804
804
  circuitId: string;
805
805
  optional?: boolean | undefined;
806
806
  }, {
807
- id: number;
807
+ id: string | number;
808
808
  query: Record<string, any>;
809
809
  circuitId: string;
810
810
  optional?: boolean | undefined;
@@ -812,7 +812,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
812
812
  }, "strip", z.ZodTypeAny, {
813
813
  callbackUrl: string;
814
814
  scope: {
815
- id: number;
815
+ id: string | number;
816
816
  query: Record<string, any>;
817
817
  circuitId: string;
818
818
  optional?: boolean | undefined;
@@ -823,7 +823,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
823
823
  }, {
824
824
  callbackUrl: string;
825
825
  scope: {
826
- id: number;
826
+ id: string | number;
827
827
  query: Record<string, any>;
828
828
  circuitId: string;
829
829
  optional?: boolean | undefined;
@@ -840,7 +840,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
840
840
  body: {
841
841
  callbackUrl: string;
842
842
  scope: {
843
- id: number;
843
+ id: string | number;
844
844
  query: Record<string, any>;
845
845
  circuitId: string;
846
846
  optional?: boolean | undefined;
@@ -859,7 +859,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
859
859
  body: {
860
860
  callbackUrl: string;
861
861
  scope: {
862
- id: number;
862
+ id: string | number;
863
863
  query: Record<string, any>;
864
864
  circuitId: string;
865
865
  optional?: boolean | undefined;
@@ -1115,7 +1115,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
1115
1115
  body: {
1116
1116
  callbackUrl: string;
1117
1117
  scope: {
1118
- id: number;
1118
+ id: string | number;
1119
1119
  query: Record<string, any>;
1120
1120
  circuitId: string;
1121
1121
  optional?: boolean | undefined;
@@ -1188,7 +1188,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
1188
1188
  body: {
1189
1189
  callbackUrl: string;
1190
1190
  scope: {
1191
- id: number;
1191
+ id: string | number;
1192
1192
  query: Record<string, any>;
1193
1193
  circuitId: string;
1194
1194
  optional?: boolean | undefined;
@@ -1264,7 +1264,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
1264
1264
  body: {
1265
1265
  callbackUrl: string;
1266
1266
  scope: {
1267
- id: number;
1267
+ id: string | number;
1268
1268
  query: Record<string, any>;
1269
1269
  circuitId: string;
1270
1270
  optional?: boolean | undefined;
@@ -1340,7 +1340,7 @@ export declare const OffChainScenarioExecutionData: z.ZodObject<{
1340
1340
  body: {
1341
1341
  callbackUrl: string;
1342
1342
  scope: {
1343
- id: number;
1343
+ id: string | number;
1344
1344
  query: Record<string, any>;
1345
1345
  circuitId: string;
1346
1346
  optional?: boolean | undefined;
@@ -1566,17 +1566,17 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1566
1566
  did_doc: z.ZodOptional<z.ZodAny>;
1567
1567
  message: z.ZodOptional<z.ZodString>;
1568
1568
  scope: z.ZodArray<z.ZodObject<{
1569
- id: z.ZodNumber;
1569
+ id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
1570
1570
  circuitId: z.ZodString;
1571
1571
  optional: z.ZodOptional<z.ZodBoolean>;
1572
1572
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
1573
1573
  }, "strip", z.ZodTypeAny, {
1574
- id: number;
1574
+ id: string | number;
1575
1575
  query: Record<string, any>;
1576
1576
  circuitId: string;
1577
1577
  optional?: boolean | undefined;
1578
1578
  }, {
1579
- id: number;
1579
+ id: string | number;
1580
1580
  query: Record<string, any>;
1581
1581
  circuitId: string;
1582
1582
  optional?: boolean | undefined;
@@ -1584,7 +1584,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1584
1584
  }, "strip", z.ZodTypeAny, {
1585
1585
  callbackUrl: string;
1586
1586
  scope: {
1587
- id: number;
1587
+ id: string | number;
1588
1588
  query: Record<string, any>;
1589
1589
  circuitId: string;
1590
1590
  optional?: boolean | undefined;
@@ -1595,7 +1595,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1595
1595
  }, {
1596
1596
  callbackUrl: string;
1597
1597
  scope: {
1598
- id: number;
1598
+ id: string | number;
1599
1599
  query: Record<string, any>;
1600
1600
  circuitId: string;
1601
1601
  optional?: boolean | undefined;
@@ -1612,7 +1612,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1612
1612
  body: {
1613
1613
  callbackUrl: string;
1614
1614
  scope: {
1615
- id: number;
1615
+ id: string | number;
1616
1616
  query: Record<string, any>;
1617
1617
  circuitId: string;
1618
1618
  optional?: boolean | undefined;
@@ -1631,7 +1631,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1631
1631
  body: {
1632
1632
  callbackUrl: string;
1633
1633
  scope: {
1634
- id: number;
1634
+ id: string | number;
1635
1635
  query: Record<string, any>;
1636
1636
  circuitId: string;
1637
1637
  optional?: boolean | undefined;
@@ -1887,7 +1887,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1887
1887
  body: {
1888
1888
  callbackUrl: string;
1889
1889
  scope: {
1890
- id: number;
1890
+ id: string | number;
1891
1891
  query: Record<string, any>;
1892
1892
  circuitId: string;
1893
1893
  optional?: boolean | undefined;
@@ -1960,7 +1960,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
1960
1960
  body: {
1961
1961
  callbackUrl: string;
1962
1962
  scope: {
1963
- id: number;
1963
+ id: string | number;
1964
1964
  query: Record<string, any>;
1965
1965
  circuitId: string;
1966
1966
  optional?: boolean | undefined;
@@ -2036,7 +2036,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
2036
2036
  body: {
2037
2037
  callbackUrl: string;
2038
2038
  scope: {
2039
- id: number;
2039
+ id: string | number;
2040
2040
  query: Record<string, any>;
2041
2041
  circuitId: string;
2042
2042
  optional?: boolean | undefined;
@@ -2112,7 +2112,7 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
2112
2112
  body: {
2113
2113
  callbackUrl: string;
2114
2114
  scope: {
2115
- id: number;
2115
+ id: string | number;
2116
2116
  query: Record<string, any>;
2117
2117
  circuitId: string;
2118
2118
  optional?: boolean | undefined;
@@ -2340,17 +2340,17 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2340
2340
  did_doc: z.ZodOptional<z.ZodAny>;
2341
2341
  message: z.ZodOptional<z.ZodString>;
2342
2342
  scope: z.ZodArray<z.ZodObject<{
2343
- id: z.ZodNumber;
2343
+ id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
2344
2344
  circuitId: z.ZodString;
2345
2345
  optional: z.ZodOptional<z.ZodBoolean>;
2346
2346
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
2347
2347
  }, "strip", z.ZodTypeAny, {
2348
- id: number;
2348
+ id: string | number;
2349
2349
  query: Record<string, any>;
2350
2350
  circuitId: string;
2351
2351
  optional?: boolean | undefined;
2352
2352
  }, {
2353
- id: number;
2353
+ id: string | number;
2354
2354
  query: Record<string, any>;
2355
2355
  circuitId: string;
2356
2356
  optional?: boolean | undefined;
@@ -2358,7 +2358,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2358
2358
  }, "strip", z.ZodTypeAny, {
2359
2359
  callbackUrl: string;
2360
2360
  scope: {
2361
- id: number;
2361
+ id: string | number;
2362
2362
  query: Record<string, any>;
2363
2363
  circuitId: string;
2364
2364
  optional?: boolean | undefined;
@@ -2369,7 +2369,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2369
2369
  }, {
2370
2370
  callbackUrl: string;
2371
2371
  scope: {
2372
- id: number;
2372
+ id: string | number;
2373
2373
  query: Record<string, any>;
2374
2374
  circuitId: string;
2375
2375
  optional?: boolean | undefined;
@@ -2386,7 +2386,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2386
2386
  body: {
2387
2387
  callbackUrl: string;
2388
2388
  scope: {
2389
- id: number;
2389
+ id: string | number;
2390
2390
  query: Record<string, any>;
2391
2391
  circuitId: string;
2392
2392
  optional?: boolean | undefined;
@@ -2405,7 +2405,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2405
2405
  body: {
2406
2406
  callbackUrl: string;
2407
2407
  scope: {
2408
- id: number;
2408
+ id: string | number;
2409
2409
  query: Record<string, any>;
2410
2410
  circuitId: string;
2411
2411
  optional?: boolean | undefined;
@@ -2661,7 +2661,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2661
2661
  body: {
2662
2662
  callbackUrl: string;
2663
2663
  scope: {
2664
- id: number;
2664
+ id: string | number;
2665
2665
  query: Record<string, any>;
2666
2666
  circuitId: string;
2667
2667
  optional?: boolean | undefined;
@@ -2734,7 +2734,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2734
2734
  body: {
2735
2735
  callbackUrl: string;
2736
2736
  scope: {
2737
- id: number;
2737
+ id: string | number;
2738
2738
  query: Record<string, any>;
2739
2739
  circuitId: string;
2740
2740
  optional?: boolean | undefined;
@@ -2810,7 +2810,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2810
2810
  body: {
2811
2811
  callbackUrl: string;
2812
2812
  scope: {
2813
- id: number;
2813
+ id: string | number;
2814
2814
  query: Record<string, any>;
2815
2815
  circuitId: string;
2816
2816
  optional?: boolean | undefined;
@@ -2886,7 +2886,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2886
2886
  body: {
2887
2887
  callbackUrl: string;
2888
2888
  scope: {
2889
- id: number;
2889
+ id: string | number;
2890
2890
  query: Record<string, any>;
2891
2891
  circuitId: string;
2892
2892
  optional?: boolean | undefined;
@@ -2996,7 +2996,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
2996
2996
  body: {
2997
2997
  callbackUrl: string;
2998
2998
  scope: {
2999
- id: number;
2999
+ id: string | number;
3000
3000
  query: Record<string, any>;
3001
3001
  circuitId: string;
3002
3002
  optional?: boolean | undefined;
@@ -3101,7 +3101,7 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
3101
3101
  body: {
3102
3102
  callbackUrl: string;
3103
3103
  scope: {
3104
- id: number;
3104
+ id: string | number;
3105
3105
  query: Record<string, any>;
3106
3106
  circuitId: string;
3107
3107
  optional?: boolean | undefined;
@@ -3445,17 +3445,17 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3445
3445
  did_doc: z.ZodOptional<z.ZodAny>;
3446
3446
  message: z.ZodOptional<z.ZodString>;
3447
3447
  scope: z.ZodArray<z.ZodObject<{
3448
- id: z.ZodNumber;
3448
+ id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
3449
3449
  circuitId: z.ZodString;
3450
3450
  optional: z.ZodOptional<z.ZodBoolean>;
3451
3451
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
3452
3452
  }, "strip", z.ZodTypeAny, {
3453
- id: number;
3453
+ id: string | number;
3454
3454
  query: Record<string, any>;
3455
3455
  circuitId: string;
3456
3456
  optional?: boolean | undefined;
3457
3457
  }, {
3458
- id: number;
3458
+ id: string | number;
3459
3459
  query: Record<string, any>;
3460
3460
  circuitId: string;
3461
3461
  optional?: boolean | undefined;
@@ -3463,7 +3463,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3463
3463
  }, "strip", z.ZodTypeAny, {
3464
3464
  callbackUrl: string;
3465
3465
  scope: {
3466
- id: number;
3466
+ id: string | number;
3467
3467
  query: Record<string, any>;
3468
3468
  circuitId: string;
3469
3469
  optional?: boolean | undefined;
@@ -3474,7 +3474,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3474
3474
  }, {
3475
3475
  callbackUrl: string;
3476
3476
  scope: {
3477
- id: number;
3477
+ id: string | number;
3478
3478
  query: Record<string, any>;
3479
3479
  circuitId: string;
3480
3480
  optional?: boolean | undefined;
@@ -3491,7 +3491,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3491
3491
  body: {
3492
3492
  callbackUrl: string;
3493
3493
  scope: {
3494
- id: number;
3494
+ id: string | number;
3495
3495
  query: Record<string, any>;
3496
3496
  circuitId: string;
3497
3497
  optional?: boolean | undefined;
@@ -3510,7 +3510,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3510
3510
  body: {
3511
3511
  callbackUrl: string;
3512
3512
  scope: {
3513
- id: number;
3513
+ id: string | number;
3514
3514
  query: Record<string, any>;
3515
3515
  circuitId: string;
3516
3516
  optional?: boolean | undefined;
@@ -3766,7 +3766,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3766
3766
  body: {
3767
3767
  callbackUrl: string;
3768
3768
  scope: {
3769
- id: number;
3769
+ id: string | number;
3770
3770
  query: Record<string, any>;
3771
3771
  circuitId: string;
3772
3772
  optional?: boolean | undefined;
@@ -3839,7 +3839,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3839
3839
  body: {
3840
3840
  callbackUrl: string;
3841
3841
  scope: {
3842
- id: number;
3842
+ id: string | number;
3843
3843
  query: Record<string, any>;
3844
3844
  circuitId: string;
3845
3845
  optional?: boolean | undefined;
@@ -3915,7 +3915,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3915
3915
  body: {
3916
3916
  callbackUrl: string;
3917
3917
  scope: {
3918
- id: number;
3918
+ id: string | number;
3919
3919
  query: Record<string, any>;
3920
3920
  circuitId: string;
3921
3921
  optional?: boolean | undefined;
@@ -3991,7 +3991,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
3991
3991
  body: {
3992
3992
  callbackUrl: string;
3993
3993
  scope: {
3994
- id: number;
3994
+ id: string | number;
3995
3995
  query: Record<string, any>;
3996
3996
  circuitId: string;
3997
3997
  optional?: boolean | undefined;
@@ -4101,7 +4101,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
4101
4101
  body: {
4102
4102
  callbackUrl: string;
4103
4103
  scope: {
4104
- id: number;
4104
+ id: string | number;
4105
4105
  query: Record<string, any>;
4106
4106
  circuitId: string;
4107
4107
  optional?: boolean | undefined;
@@ -4206,7 +4206,7 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
4206
4206
  body: {
4207
4207
  callbackUrl: string;
4208
4208
  scope: {
4209
- id: number;
4209
+ id: string | number;
4210
4210
  query: Record<string, any>;
4211
4211
  circuitId: string;
4212
4212
  optional?: boolean | undefined;