@nexeraid/identity-schemas 2.8.0-dev → 2.10.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 (41) hide show
  1. package/dist/{customers.schema-1bf4fe64.cjs.dev.js → customers.schema-a23a7d7d.cjs.dev.js} +1 -1
  2. package/dist/{customers.schema-0bfe7ed2.esm.js → customers.schema-bc9ea241.esm.js} +1 -1
  3. package/dist/{customers.schema-80e163e9.cjs.prod.js → customers.schema-f2cbacca.cjs.prod.js} +1 -1
  4. package/dist/declarations/src/identity/app-requests.schema.d.ts +37 -37
  5. package/dist/declarations/src/identity/identity-v2.schema.d.ts +9 -9
  6. package/dist/declarations/src/identity/kyc.schema.d.ts +20 -20
  7. package/dist/declarations/src/identity/query.schema.d.ts +97 -92
  8. package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
  9. package/dist/declarations/src/identity/scenario.schema.d.ts +99 -99
  10. package/dist/declarations/src/identity/zkps.schema.d.ts +17 -17
  11. package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +4 -4
  12. package/dist/declarations/src/transaction.schema.d.ts +2 -2
  13. package/dist/declarations/src/transaction.schema.d.ts.map +1 -1
  14. package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +135 -135
  15. package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +3 -3
  16. package/dist/{frontend-utilities.schema-63c0c3ec.cjs.prod.js → frontend-utilities.schema-1a37ad51.cjs.prod.js} +1 -1
  17. package/dist/{frontend-utilities.schema-c53dbf36.esm.js → frontend-utilities.schema-5587da47.esm.js} +1 -1
  18. package/dist/{frontend-utilities.schema-7ec52bb3.cjs.dev.js → frontend-utilities.schema-b01c1889.cjs.dev.js} +1 -1
  19. package/dist/{identity-api.schema-725ecd1d.cjs.prod.js → identity-api.schema-2fb2ff78.cjs.prod.js} +42 -9
  20. package/dist/{identity-api.schema-e1fe9b0e.cjs.dev.js → identity-api.schema-841bc821.cjs.dev.js} +42 -9
  21. package/dist/{identity-api.schema-a3f556f3.esm.js → identity-api.schema-ee362a66.esm.js} +42 -9
  22. package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -3
  23. package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -3
  24. package/dist/nexeraid-identity-schemas.esm.js +4 -4
  25. package/dist/package.json +1 -1
  26. package/dist/{transaction.schema-1534b40f.cjs.prod.js → transaction.schema-2d4e973b.cjs.prod.js} +2 -2
  27. package/dist/{transaction.schema-221579a3.esm.js → transaction.schema-2dd50ae5.esm.js} +2 -2
  28. package/dist/{transaction.schema-4195655f.cjs.dev.js → transaction.schema-5bc7e516.cjs.dev.js} +2 -2
  29. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
  30. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
  31. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  32. package/package.json +1 -1
  33. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
  34. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
  35. package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
  36. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  37. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  38. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
  39. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +3 -3
  40. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +3 -3
  41. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +3 -3
@@ -8,18 +8,18 @@ export declare const ZKPRequest: z.ZodObject<{
8
8
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9
9
  attribute: z.ZodString;
10
10
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
11
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
11
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
12
12
  }, "strip", z.ZodTypeAny, {
13
13
  value: string | number | boolean | string[] | number[];
14
14
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
15
15
  attribute: string;
16
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
16
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
17
17
  requestId?: number | null | undefined;
18
18
  }, {
19
19
  value: string | number | boolean | string[] | number[];
20
20
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
21
21
  attribute: string;
22
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
22
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
23
23
  requestId?: number | null | undefined;
24
24
  }>;
25
25
  }, "strip", z.ZodTypeAny, {
@@ -28,7 +28,7 @@ export declare const ZKPRequest: z.ZodObject<{
28
28
  value: string | number | boolean | string[] | number[];
29
29
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
30
30
  attribute: string;
31
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
31
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
32
32
  requestId?: number | null | undefined;
33
33
  };
34
34
  circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
@@ -39,7 +39,7 @@ export declare const ZKPRequest: z.ZodObject<{
39
39
  value: string | number | boolean | string[] | number[];
40
40
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
41
41
  attribute: string;
42
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
42
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
43
43
  requestId?: number | null | undefined;
44
44
  };
45
45
  circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
@@ -74,18 +74,18 @@ export declare const OffChainZKP: z.ZodObject<{
74
74
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
75
75
  attribute: z.ZodString;
76
76
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
77
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
77
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
78
78
  }, "strip", z.ZodTypeAny, {
79
79
  value: string | number | boolean | string[] | number[];
80
80
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
81
81
  attribute: string;
82
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
82
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
83
83
  requestId?: number | null | undefined;
84
84
  }, {
85
85
  value: string | number | boolean | string[] | number[];
86
86
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
87
87
  attribute: string;
88
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
88
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
89
89
  requestId?: number | null | undefined;
90
90
  }>;
91
91
  }, "strip", z.ZodTypeAny, {
@@ -94,7 +94,7 @@ export declare const OffChainZKP: z.ZodObject<{
94
94
  value: string | number | boolean | string[] | number[];
95
95
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
96
96
  attribute: string;
97
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
97
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
98
98
  requestId?: number | null | undefined;
99
99
  };
100
100
  circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
@@ -105,7 +105,7 @@ export declare const OffChainZKP: z.ZodObject<{
105
105
  value: string | number | boolean | string[] | number[];
106
106
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
107
107
  attribute: string;
108
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
108
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
109
109
  requestId?: number | null | undefined;
110
110
  };
111
111
  circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
@@ -118,7 +118,7 @@ export declare const OffChainZKP: z.ZodObject<{
118
118
  value: string | number | boolean | string[] | number[];
119
119
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
120
120
  attribute: string;
121
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
121
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
122
122
  requestId?: number | null | undefined;
123
123
  };
124
124
  circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
@@ -132,7 +132,7 @@ export declare const OffChainZKP: z.ZodObject<{
132
132
  value: string | number | boolean | string[] | number[];
133
133
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
134
134
  attribute: string;
135
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
135
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
136
136
  requestId?: number | null | undefined;
137
137
  };
138
138
  circuitId: "credentialAtomicQuerySigV2" | "credentialAtomicQuerySigV2OnChain";
@@ -151,18 +151,18 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
151
151
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
152
152
  attribute: z.ZodString;
153
153
  value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
154
- operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
154
+ operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne", "$exists"]>;
155
155
  }, "strip", z.ZodTypeAny, {
156
156
  value: string | number | boolean | string[] | number[];
157
157
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
158
158
  attribute: string;
159
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
159
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
160
160
  requestId?: number | null | undefined;
161
161
  }, {
162
162
  value: string | number | boolean | string[] | number[];
163
163
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
164
164
  attribute: string;
165
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
165
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
166
166
  requestId?: number | null | undefined;
167
167
  }>, "many">;
168
168
  onChainVerification: z.ZodOptional<z.ZodBoolean>;
@@ -176,7 +176,7 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
176
176
  value: string | number | boolean | string[] | number[];
177
177
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
178
178
  attribute: string;
179
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
179
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
180
180
  requestId?: number | null | undefined;
181
181
  }[];
182
182
  sessionId: string;
@@ -192,7 +192,7 @@ export declare const CreateAuthRequestProps: z.ZodObject<{
192
192
  value: string | number | boolean | string[] | number[];
193
193
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
194
194
  attribute: string;
195
- operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
195
+ operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne" | "$exists";
196
196
  requestId?: number | null | undefined;
197
197
  }[];
198
198
  sessionId: string;
@@ -5521,11 +5521,11 @@ export declare const SumsubKybSessionFlowSectionItem: z.ZodObject<{
5521
5521
  detail: z.ZodString;
5522
5522
  status: z.ZodEnum<["pending", "success", "failed"]>;
5523
5523
  }, "strip", z.ZodTypeAny, {
5524
- status: "pending" | "success" | "failed";
5524
+ status: "pending" | "failed" | "success";
5525
5525
  name: string;
5526
5526
  detail: string;
5527
5527
  }, {
5528
- status: "pending" | "success" | "failed";
5528
+ status: "pending" | "failed" | "success";
5529
5529
  name: string;
5530
5530
  detail: string;
5531
5531
  }>;
@@ -5535,11 +5535,11 @@ export declare const SumsubKybSessionFlowSection: z.ZodArray<z.ZodObject<{
5535
5535
  detail: z.ZodString;
5536
5536
  status: z.ZodEnum<["pending", "success", "failed"]>;
5537
5537
  }, "strip", z.ZodTypeAny, {
5538
- status: "pending" | "success" | "failed";
5538
+ status: "pending" | "failed" | "success";
5539
5539
  name: string;
5540
5540
  detail: string;
5541
5541
  }, {
5542
- status: "pending" | "success" | "failed";
5542
+ status: "pending" | "failed" | "success";
5543
5543
  name: string;
5544
5544
  detail: string;
5545
5545
  }>, "many">;
@@ -14,8 +14,8 @@ export type TransactionTypeWithAll = z.infer<typeof TransactionTypeWithAll>;
14
14
  export declare const TransactionRiskLevels: readonly ["Low", "Medium", "High"];
15
15
  export declare const TransactionRiskLevel: z.ZodEnum<["Low", "Medium", "High"]>;
16
16
  export type TransactionRiskLevel = z.infer<typeof TransactionRiskLevel>;
17
- export declare const TransactionReviewStatuses: readonly ["pending", "approved", "under_investigation", "blocked"];
18
- export declare const TransactionReviewStatus: z.ZodEnum<["pending", "approved", "under_investigation", "blocked"]>;
17
+ export declare const TransactionReviewStatuses: readonly ["pending", "approved", "under_investigation", "blocked", "failed"];
18
+ export declare const TransactionReviewStatus: z.ZodEnum<["pending", "approved", "under_investigation", "blocked", "failed"]>;
19
19
  export type TransactionReviewStatus = z.infer<typeof TransactionReviewStatus>;
20
20
  export declare const TransactionDirections: readonly ["IN", "OUT"];
21
21
  export declare const TransactionDirection: z.ZodEnum<["IN", "OUT"]>;
@@ -1 +1 @@
1
- {"version":3,"file":"transaction.schema.d.ts","sourceRoot":"../../../src","sources":["transaction.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,kBAAkB,4UAiBrB,CAAC;AAEX,eAAO,MAAM,qBAAqB,8UAA6B,CAAC;AAChE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,yBAAyB,4IAY5B,CAAC;AAEX,eAAO,MAAM,sBAAsB,8IAAoC,CAAC;AACxE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG5E,eAAO,MAAM,gBAAgB,6BAA8B,CAAC;AAC5D,eAAO,MAAM,eAAe,+BAA2B,CAAC;AACxD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAG9D,eAAO,MAAM,uBAAuB,oCAAwC,CAAC;AAC7E,eAAO,MAAM,sBAAsB,sCAAkC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG5E,eAAO,MAAM,qBAAqB,oCAAqC,CAAC;AACxE,eAAO,MAAM,oBAAoB,sCAAgC,CAAC;AAClE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAGxE,eAAO,MAAM,yBAAyB,oEAK5B,CAAC;AACX,eAAO,MAAM,uBAAuB,sEAAoC,CAAC;AACzE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,qBAAqB,wBAAyB,CAAC;AAC5D,eAAO,MAAM,oBAAoB,0BAAgC,CAAC;AAClE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB,yvzCAG3B,CAAC;AACX,eAAO,MAAM,uBAAuB,2vzCAAmC,CAAC;AACxE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,oBAAoB,qBAAsB,CAAC;AACxD,eAAO,MAAM,mBAAmB,uBAA+B,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAGtE,eAAO,MAAM,YAAY,wCAAyC,CAAC;AACnE,eAAO,MAAM,WAAW,0CAAuB,CAAC;AAChD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAGtD,eAAO,MAAM,uBAAuB,sDAI1B,CAAC;AACX,eAAO,MAAM,sBAAsB,wDAAkC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
1
+ {"version":3,"file":"transaction.schema.d.ts","sourceRoot":"../../../src","sources":["transaction.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,kBAAkB,4UAiBrB,CAAC;AAEX,eAAO,MAAM,qBAAqB,8UAA6B,CAAC;AAChE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,yBAAyB,4IAY5B,CAAC;AAEX,eAAO,MAAM,sBAAsB,8IAAoC,CAAC;AACxE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG5E,eAAO,MAAM,gBAAgB,6BAA8B,CAAC;AAC5D,eAAO,MAAM,eAAe,+BAA2B,CAAC;AACxD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAG9D,eAAO,MAAM,uBAAuB,oCAAwC,CAAC;AAC7E,eAAO,MAAM,sBAAsB,sCAAkC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAG5E,eAAO,MAAM,qBAAqB,oCAAqC,CAAC;AACxE,eAAO,MAAM,oBAAoB,sCAAgC,CAAC;AAClE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAGxE,eAAO,MAAM,yBAAyB,8EAM5B,CAAC;AACX,eAAO,MAAM,uBAAuB,gFAAoC,CAAC;AACzE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,qBAAqB,wBAAyB,CAAC;AAC5D,eAAO,MAAM,oBAAoB,0BAAgC,CAAC;AAClE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB,yvzCAG3B,CAAC;AACX,eAAO,MAAM,uBAAuB,2vzCAAmC,CAAC;AACxE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,oBAAoB,qBAAsB,CAAC;AACxD,eAAO,MAAM,mBAAmB,uBAA+B,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAGtE,eAAO,MAAM,YAAY,wCAAyC,CAAC;AACnE,eAAO,MAAM,WAAW,0CAAuB,CAAC;AAChD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAGtD,eAAO,MAAM,uBAAuB,sDAI1B,CAAC;AACX,eAAO,MAAM,sBAAsB,wDAAkC,CAAC;AACtE,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}