@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.
- package/dist/declarations/src/customer.schema.d.ts +93 -0
- package/dist/declarations/src/customer.schema.d.ts.map +1 -0
- package/dist/declarations/src/identity/app-requests.schema.d.ts +10 -10
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts +1 -0
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/host-requests.schema.d.ts +36 -56
- package/dist/declarations/src/identity/host-requests.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +76 -56
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/kyc.schema.d.ts +22 -32
- package/dist/declarations/src/identity/kyc.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/txAuthData.schema.d.ts +30 -48
- package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
- package/dist/declarations/src/index.d.ts +2 -0
- package/dist/declarations/src/index.d.ts.map +1 -1
- package/dist/frontend-utilities.schema-205058ee.cjs.dev.js +2129 -0
- package/dist/frontend-utilities.schema-43c7bf6d.esm.js +2124 -0
- package/dist/frontend-utilities.schema-9cf8924c.cjs.prod.js +2129 -0
- package/dist/{identity-api.schema-38f27d6b.esm.js → identity-api.schema-0bb85c0c.esm.js} +106 -13
- package/dist/{identity-api.schema-46a66e5e.cjs.dev.js → identity-api.schema-1f84a316.cjs.prod.js} +125 -12
- package/dist/{identity-api.schema-b63a1396.cjs.prod.js → identity-api.schema-986819d9.cjs.dev.js} +125 -12
- package/dist/nexeraid-identity-schemas.cjs.dev.js +48 -1
- package/dist/nexeraid-identity-schemas.cjs.prod.js +48 -1
- package/dist/nexeraid-identity-schemas.esm.js +3 -2
- package/dist/package.json +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +3 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +3 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +6 -2124
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +6 -2124
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2125
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const RiskScoreTypes: readonly ["Low", "Medium", "High", "No risk"];
|
|
3
|
+
export declare const RiskScoreType: z.ZodEnum<["Low", "Medium", "High", "No risk"]>;
|
|
4
|
+
export type RiskScoreType = z.infer<typeof RiskScoreType>;
|
|
5
|
+
export declare const CustomerTypes: readonly ["Individual", "Company"];
|
|
6
|
+
export declare const CustomerType: z.ZodEnum<["Individual", "Company"]>;
|
|
7
|
+
export type CustomerType = z.infer<typeof CustomerType>;
|
|
8
|
+
export declare const KycOnboardingLevels: readonly ["Sign-up", "AML screening", "KYC", "Questionaire", "Onboarded"];
|
|
9
|
+
export declare const KycOnboardingLevel: z.ZodEnum<["Sign-up", "AML screening", "KYC", "Questionaire", "Onboarded"]>;
|
|
10
|
+
export type KycOnboardingLevel = z.infer<typeof KycOnboardingLevel>;
|
|
11
|
+
export declare const KybOnboardingLevels: readonly ["Onboarding", "KYB", "Onboarded"];
|
|
12
|
+
export declare const KybOnboardingLevel: z.ZodEnum<["Onboarding", "KYB", "Onboarded"]>;
|
|
13
|
+
export type KybOnboardingLevel = z.infer<typeof KybOnboardingLevel>;
|
|
14
|
+
export declare const CustomerOnboardingLevels: readonly ["Sign-up", "AML screening", "KYC", "Questionaire", "Onboarded", "Onboarding", "KYB", "Onboarded"];
|
|
15
|
+
export declare const CustomerOnboardingLevel: z.ZodEnum<["Sign-up", "AML screening", "KYC", "Questionaire", "Onboarded", "Onboarding", "KYB", "Onboarded"]>;
|
|
16
|
+
export type CustomerOnboardingLevel = z.infer<typeof CustomerOnboardingLevel>;
|
|
17
|
+
export declare const CustomerStatuses: readonly ["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"];
|
|
18
|
+
/** We changed the status names to be more user-friendly, that's why we need to preprocess the data
|
|
19
|
+
* “Closed” -> “Terminated”
|
|
20
|
+
* “Blocked” -> “Rejected”
|
|
21
|
+
* “Under Investigation” -> “To be reviewed”
|
|
22
|
+
*/
|
|
23
|
+
export declare const CustomerStatus: z.ZodEffects<z.ZodEnum<["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"]>, "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status", unknown>;
|
|
24
|
+
export type CustomerStatus = z.infer<typeof CustomerStatus>;
|
|
25
|
+
export declare const BasicCustomerContactInformation: z.ZodObject<{
|
|
26
|
+
email: z.ZodOptional<z.ZodString>;
|
|
27
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
28
|
+
twitter: z.ZodOptional<z.ZodString>;
|
|
29
|
+
discord: z.ZodOptional<z.ZodString>;
|
|
30
|
+
telegram: z.ZodOptional<z.ZodString>;
|
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
email?: string | undefined;
|
|
33
|
+
phone?: string | undefined;
|
|
34
|
+
twitter?: string | undefined;
|
|
35
|
+
discord?: string | undefined;
|
|
36
|
+
telegram?: string | undefined;
|
|
37
|
+
}, {
|
|
38
|
+
email?: string | undefined;
|
|
39
|
+
phone?: string | undefined;
|
|
40
|
+
twitter?: string | undefined;
|
|
41
|
+
discord?: string | undefined;
|
|
42
|
+
telegram?: string | undefined;
|
|
43
|
+
}>;
|
|
44
|
+
export type BasicCustomerContactInformation = z.infer<typeof BasicCustomerContactInformation>;
|
|
45
|
+
export declare const CUSTOMERS_CHARTS: readonly ["totalCustomers", "onboarded", "active", "dormant", "blocked", "topCountriesByCustomersCount", "customersRiskLevel", "customersByStatus", "trendOfStatusesOverTime"];
|
|
46
|
+
export declare const CustomersChartType: z.ZodEnum<["totalCustomers", "onboarded", "active", "dormant", "blocked", "topCountriesByCustomersCount", "customersRiskLevel", "customersByStatus", "trendOfStatusesOverTime"]>;
|
|
47
|
+
export type CustomersChartType = z.infer<typeof CustomersChartType>;
|
|
48
|
+
export declare const CUSTOMER_TABLE_COLUMNS: readonly ["selected", "wallets", "type", "country_of_residence", "risk_score", "onboarding_level", "open_alerts_count", "status", "date_onboarded"];
|
|
49
|
+
export declare const CustomerTableColumn: z.ZodEnum<["selected", "wallets", "type", "country_of_residence", "risk_score", "onboarding_level", "open_alerts_count", "status", "date_onboarded"]>;
|
|
50
|
+
export type CustomerTableColumn = z.infer<typeof CustomerTableColumn>;
|
|
51
|
+
export declare const CUSTOMER_AUTOMATION_REASONS: {
|
|
52
|
+
"rule-engine": {
|
|
53
|
+
fail: string;
|
|
54
|
+
pass: string;
|
|
55
|
+
};
|
|
56
|
+
kyc: {
|
|
57
|
+
green: {
|
|
58
|
+
final: string;
|
|
59
|
+
};
|
|
60
|
+
yellow: {
|
|
61
|
+
retry: string;
|
|
62
|
+
fail: string;
|
|
63
|
+
};
|
|
64
|
+
red: {
|
|
65
|
+
retry: string;
|
|
66
|
+
fail: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
kyb: {
|
|
70
|
+
green: {
|
|
71
|
+
final: string;
|
|
72
|
+
};
|
|
73
|
+
yellow: {
|
|
74
|
+
retry: string;
|
|
75
|
+
fail: string;
|
|
76
|
+
};
|
|
77
|
+
red: {
|
|
78
|
+
retry: string;
|
|
79
|
+
fail: string;
|
|
80
|
+
};
|
|
81
|
+
beneficiaryOnToBeReviewState: string;
|
|
82
|
+
};
|
|
83
|
+
"aml-screening": {
|
|
84
|
+
fail: string;
|
|
85
|
+
ongoingMonitoringFail: string;
|
|
86
|
+
pass: string;
|
|
87
|
+
};
|
|
88
|
+
offchain_zkp: {
|
|
89
|
+
fail: string;
|
|
90
|
+
pass: string;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
//# sourceMappingURL=customer.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"customer.schema.d.ts","sourceRoot":"../../../src","sources":["customer.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,cAAc,+CAAgD,CAAC;AAC5E,eAAO,MAAM,aAAa,iDAAyB,CAAC;AACpD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAG1D,eAAO,MAAM,aAAa,oCAAqC,CAAC;AAChE,eAAO,MAAM,YAAY,sCAAwB,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAGxD,eAAO,MAAM,mBAAmB,2EAMtB,CAAC;AACX,eAAO,MAAM,kBAAkB,6EAA8B,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAGpE,eAAO,MAAM,mBAAmB,6CAA8C,CAAC;AAC/E,eAAO,MAAM,kBAAkB,+CAA8B,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,wBAAwB,6GAG3B,CAAC;AACX,eAAO,MAAM,uBAAuB,+GAAmC,CAAC;AACxE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,gBAAgB,gHASnB,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,cAAc,qPAWC,CAAC;AAE7B,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEb,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,+BAA+B,CACvC,CAAC;AAEF,eAAO,MAAM,gBAAgB,gLAUnB,CAAC;AAEX,eAAO,MAAM,kBAAkB,kLAA2B,CAAC;AAC3D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,sBAAsB,qJAUzB,CAAC;AAEX,eAAO,MAAM,mBAAmB,uJAAiC,CAAC;AAClE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CvC,CAAC"}
|
|
@@ -3917,13 +3917,13 @@ export declare const DataAvailableOnStart: z.ZodObject<{
|
|
|
3917
3917
|
accessToken: string;
|
|
3918
3918
|
signature: string;
|
|
3919
3919
|
identifier?: string | undefined;
|
|
3920
|
-
flow?: "
|
|
3920
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
3921
3921
|
}, {
|
|
3922
3922
|
signingMessage: string;
|
|
3923
3923
|
accessToken: string;
|
|
3924
3924
|
signature: string;
|
|
3925
3925
|
identifier?: string | undefined;
|
|
3926
|
-
flow?: "
|
|
3926
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
3927
3927
|
}>;
|
|
3928
3928
|
export declare const InitialDataResponse: z.ZodObject<{
|
|
3929
3929
|
type: z.ZodLiteral<"onStartKyc">;
|
|
@@ -3938,13 +3938,13 @@ export declare const InitialDataResponse: z.ZodObject<{
|
|
|
3938
3938
|
accessToken: string;
|
|
3939
3939
|
signature: string;
|
|
3940
3940
|
identifier?: string | undefined;
|
|
3941
|
-
flow?: "
|
|
3941
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
3942
3942
|
}, {
|
|
3943
3943
|
signingMessage: string;
|
|
3944
3944
|
accessToken: string;
|
|
3945
3945
|
signature: string;
|
|
3946
3946
|
identifier?: string | undefined;
|
|
3947
|
-
flow?: "
|
|
3947
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
3948
3948
|
}>;
|
|
3949
3949
|
}, "strip", z.ZodTypeAny, {
|
|
3950
3950
|
type: "onStartKyc";
|
|
@@ -3953,7 +3953,7 @@ export declare const InitialDataResponse: z.ZodObject<{
|
|
|
3953
3953
|
accessToken: string;
|
|
3954
3954
|
signature: string;
|
|
3955
3955
|
identifier?: string | undefined;
|
|
3956
|
-
flow?: "
|
|
3956
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
3957
3957
|
};
|
|
3958
3958
|
}, {
|
|
3959
3959
|
type: "onStartKyc";
|
|
@@ -3962,7 +3962,7 @@ export declare const InitialDataResponse: z.ZodObject<{
|
|
|
3962
3962
|
accessToken: string;
|
|
3963
3963
|
signature: string;
|
|
3964
3964
|
identifier?: string | undefined;
|
|
3965
|
-
flow?: "
|
|
3965
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
3966
3966
|
};
|
|
3967
3967
|
}>;
|
|
3968
3968
|
export declare const SignatureResponse: z.ZodObject<{
|
|
@@ -4008,13 +4008,13 @@ export declare const HostResponseMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
4008
4008
|
accessToken: string;
|
|
4009
4009
|
signature: string;
|
|
4010
4010
|
identifier?: string | undefined;
|
|
4011
|
-
flow?: "
|
|
4011
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
4012
4012
|
}, {
|
|
4013
4013
|
signingMessage: string;
|
|
4014
4014
|
accessToken: string;
|
|
4015
4015
|
signature: string;
|
|
4016
4016
|
identifier?: string | undefined;
|
|
4017
|
-
flow?: "
|
|
4017
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
4018
4018
|
}>;
|
|
4019
4019
|
}, "strip", z.ZodTypeAny, {
|
|
4020
4020
|
type: "onStartKyc";
|
|
@@ -4023,7 +4023,7 @@ export declare const HostResponseMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
4023
4023
|
accessToken: string;
|
|
4024
4024
|
signature: string;
|
|
4025
4025
|
identifier?: string | undefined;
|
|
4026
|
-
flow?: "
|
|
4026
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
4027
4027
|
};
|
|
4028
4028
|
}, {
|
|
4029
4029
|
type: "onStartKyc";
|
|
@@ -4032,7 +4032,7 @@ export declare const HostResponseMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
4032
4032
|
accessToken: string;
|
|
4033
4033
|
signature: string;
|
|
4034
4034
|
identifier?: string | undefined;
|
|
4035
|
-
flow?: "
|
|
4035
|
+
flow?: "KYB" | "VERIFICATION" | "MANAGEMENT" | "POLYGON_ID" | undefined;
|
|
4036
4036
|
};
|
|
4037
4037
|
}>, z.ZodObject<{
|
|
4038
4038
|
type: z.ZodLiteral<"signature">;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const ScenarioTypes: readonly ["ChallengeQuery", "OnChainZKP", "OffChainZKP"];
|
|
3
3
|
export declare const ScenarioType: z.ZodEnum<["ChallengeQuery", "OnChainZKP", "OffChainZKP"]>;
|
|
4
|
+
export type ScenarioType = z.infer<typeof ScenarioType>;
|
|
4
5
|
export declare const ScenarioStatuses: readonly ["UpToDate", "NoRulesAdded", "HasNotDeployment"];
|
|
5
6
|
export declare const ScenarioStatus: z.ZodEnum<["UpToDate", "NoRulesAdded", "HasNotDeployment"]>;
|
|
6
7
|
export type ScenarioStatus = z.infer<typeof ScenarioStatus>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-scenario.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["execute-scenario.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,aAAa,0DAIhB,CAAC;AACX,eAAO,MAAM,YAAY,4DAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"execute-scenario.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["execute-scenario.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,aAAa,0DAIhB,CAAC;AACX,eAAO,MAAM,YAAY,4DAAwB,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAExD,eAAO,MAAM,gBAAgB,2DAInB,CAAC;AACX,eAAO,MAAM,cAAc,6DAA2B,CAAC;AACvD,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB7B,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAA8B,CAAC;AACrE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,kBAAkB,qDAKrB,CAAC;AACX,eAAO,MAAM,gBAAgB,uDAA6B,CAAC;AAC3D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAKnE,CAAC"}
|
|
@@ -1646,22 +1646,19 @@ export type GetTxAuthSigRequest = z.infer<typeof GetTxAuthSigRequest>;
|
|
|
1646
1646
|
*/
|
|
1647
1647
|
export declare const GetTxAuthSigResponse: z.ZodObject<{
|
|
1648
1648
|
type: z.ZodLiteral<"getTxAuthSigResponse">;
|
|
1649
|
-
signatureResponse: z.
|
|
1650
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
1651
|
-
}, "strip", z.ZodTypeAny, {
|
|
1652
|
-
blockExpiration?: number | undefined;
|
|
1653
|
-
}, {
|
|
1654
|
-
blockExpiration?: number | undefined;
|
|
1655
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1649
|
+
signatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
1656
1650
|
isAuthorized: z.ZodLiteral<true>;
|
|
1657
1651
|
signature: z.ZodEffects<z.ZodString, string, string>;
|
|
1658
1652
|
payload: z.ZodString;
|
|
1653
|
+
blockExpiration: z.ZodNumber;
|
|
1659
1654
|
}, "strip", z.ZodTypeAny, {
|
|
1660
1655
|
signature: string;
|
|
1656
|
+
blockExpiration: number;
|
|
1661
1657
|
isAuthorized: true;
|
|
1662
1658
|
payload: string;
|
|
1663
1659
|
}, {
|
|
1664
1660
|
signature: string;
|
|
1661
|
+
blockExpiration: number;
|
|
1665
1662
|
isAuthorized: true;
|
|
1666
1663
|
payload: string;
|
|
1667
1664
|
}>, z.ZodObject<{
|
|
@@ -1673,34 +1670,32 @@ export declare const GetTxAuthSigResponse: z.ZodObject<{
|
|
|
1673
1670
|
}, {
|
|
1674
1671
|
isAuthorized: false;
|
|
1675
1672
|
errorMessage?: any;
|
|
1676
|
-
}>]
|
|
1673
|
+
}>]>;
|
|
1677
1674
|
identifier: z.ZodString;
|
|
1678
1675
|
}, "strip", z.ZodTypeAny, {
|
|
1679
1676
|
type: "getTxAuthSigResponse";
|
|
1680
1677
|
identifier: string;
|
|
1681
1678
|
signatureResponse: {
|
|
1682
|
-
blockExpiration?: number | undefined;
|
|
1683
|
-
} & ({
|
|
1684
1679
|
signature: string;
|
|
1680
|
+
blockExpiration: number;
|
|
1685
1681
|
isAuthorized: true;
|
|
1686
1682
|
payload: string;
|
|
1687
1683
|
} | {
|
|
1688
1684
|
isAuthorized: false;
|
|
1689
1685
|
errorMessage?: any;
|
|
1690
|
-
}
|
|
1686
|
+
};
|
|
1691
1687
|
}, {
|
|
1692
1688
|
type: "getTxAuthSigResponse";
|
|
1693
1689
|
identifier: string;
|
|
1694
1690
|
signatureResponse: {
|
|
1695
|
-
blockExpiration?: number | undefined;
|
|
1696
|
-
} & ({
|
|
1697
1691
|
signature: string;
|
|
1692
|
+
blockExpiration: number;
|
|
1698
1693
|
isAuthorized: true;
|
|
1699
1694
|
payload: string;
|
|
1700
1695
|
} | {
|
|
1701
1696
|
isAuthorized: false;
|
|
1702
1697
|
errorMessage?: any;
|
|
1703
|
-
}
|
|
1698
|
+
};
|
|
1704
1699
|
}>;
|
|
1705
1700
|
export type GetTxAuthSigResponse = z.infer<typeof GetTxAuthSigResponse>;
|
|
1706
1701
|
/**
|
|
@@ -1761,20 +1756,17 @@ export type GetTxAuthSigRequestTezos = z.infer<typeof GetTxAuthSigRequestTezos>;
|
|
|
1761
1756
|
*/
|
|
1762
1757
|
export declare const GetTxAuthSigResponseTezos: z.ZodObject<{
|
|
1763
1758
|
type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
|
|
1764
|
-
signatureResponse: z.
|
|
1765
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
1766
|
-
}, "strip", z.ZodTypeAny, {
|
|
1767
|
-
blockExpiration?: number | undefined;
|
|
1768
|
-
}, {
|
|
1769
|
-
blockExpiration?: number | undefined;
|
|
1770
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
1759
|
+
signatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
1771
1760
|
isAuthorized: z.ZodLiteral<true>;
|
|
1772
1761
|
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
|
|
1762
|
+
blockExpiration: z.ZodNumber;
|
|
1773
1763
|
}, "strip", z.ZodTypeAny, {
|
|
1774
1764
|
signature: `edsig${string}`;
|
|
1765
|
+
blockExpiration: number;
|
|
1775
1766
|
isAuthorized: true;
|
|
1776
1767
|
}, {
|
|
1777
1768
|
signature: string;
|
|
1769
|
+
blockExpiration: number;
|
|
1778
1770
|
isAuthorized: true;
|
|
1779
1771
|
}>, z.ZodObject<{
|
|
1780
1772
|
isAuthorized: z.ZodLiteral<false>;
|
|
@@ -1785,32 +1777,30 @@ export declare const GetTxAuthSigResponseTezos: z.ZodObject<{
|
|
|
1785
1777
|
}, {
|
|
1786
1778
|
isAuthorized: false;
|
|
1787
1779
|
errorMessage?: any;
|
|
1788
|
-
}>]
|
|
1780
|
+
}>]>;
|
|
1789
1781
|
identifier: z.ZodString;
|
|
1790
1782
|
}, "strip", z.ZodTypeAny, {
|
|
1791
1783
|
type: "getTezosTxAuthSigResponse";
|
|
1792
1784
|
identifier: string;
|
|
1793
1785
|
signatureResponse: {
|
|
1794
|
-
blockExpiration?: number | undefined;
|
|
1795
|
-
} & ({
|
|
1796
1786
|
signature: `edsig${string}`;
|
|
1787
|
+
blockExpiration: number;
|
|
1797
1788
|
isAuthorized: true;
|
|
1798
1789
|
} | {
|
|
1799
1790
|
isAuthorized: false;
|
|
1800
1791
|
errorMessage?: any;
|
|
1801
|
-
}
|
|
1792
|
+
};
|
|
1802
1793
|
}, {
|
|
1803
1794
|
type: "getTezosTxAuthSigResponse";
|
|
1804
1795
|
identifier: string;
|
|
1805
1796
|
signatureResponse: {
|
|
1806
|
-
blockExpiration?: number | undefined;
|
|
1807
|
-
} & ({
|
|
1808
1797
|
signature: string;
|
|
1798
|
+
blockExpiration: number;
|
|
1809
1799
|
isAuthorized: true;
|
|
1810
1800
|
} | {
|
|
1811
1801
|
isAuthorized: false;
|
|
1812
1802
|
errorMessage?: any;
|
|
1813
|
-
}
|
|
1803
|
+
};
|
|
1814
1804
|
}>;
|
|
1815
1805
|
export type GetTxAuthSigResponseTezos = z.infer<typeof GetTxAuthSigResponseTezos>;
|
|
1816
1806
|
export declare const HostRequestMessage: z.ZodUnion<[z.ZodObject<{
|
|
@@ -2849,22 +2839,19 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2849
2839
|
isVerified: boolean;
|
|
2850
2840
|
}>, z.ZodObject<{
|
|
2851
2841
|
type: z.ZodLiteral<"getTxAuthSigResponse">;
|
|
2852
|
-
signatureResponse: z.
|
|
2853
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
2854
|
-
}, "strip", z.ZodTypeAny, {
|
|
2855
|
-
blockExpiration?: number | undefined;
|
|
2856
|
-
}, {
|
|
2857
|
-
blockExpiration?: number | undefined;
|
|
2858
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
2842
|
+
signatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
2859
2843
|
isAuthorized: z.ZodLiteral<true>;
|
|
2860
2844
|
signature: z.ZodEffects<z.ZodString, string, string>;
|
|
2861
2845
|
payload: z.ZodString;
|
|
2846
|
+
blockExpiration: z.ZodNumber;
|
|
2862
2847
|
}, "strip", z.ZodTypeAny, {
|
|
2863
2848
|
signature: string;
|
|
2849
|
+
blockExpiration: number;
|
|
2864
2850
|
isAuthorized: true;
|
|
2865
2851
|
payload: string;
|
|
2866
2852
|
}, {
|
|
2867
2853
|
signature: string;
|
|
2854
|
+
blockExpiration: number;
|
|
2868
2855
|
isAuthorized: true;
|
|
2869
2856
|
payload: string;
|
|
2870
2857
|
}>, z.ZodObject<{
|
|
@@ -2876,50 +2863,45 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2876
2863
|
}, {
|
|
2877
2864
|
isAuthorized: false;
|
|
2878
2865
|
errorMessage?: any;
|
|
2879
|
-
}>]
|
|
2866
|
+
}>]>;
|
|
2880
2867
|
identifier: z.ZodString;
|
|
2881
2868
|
}, "strip", z.ZodTypeAny, {
|
|
2882
2869
|
type: "getTxAuthSigResponse";
|
|
2883
2870
|
identifier: string;
|
|
2884
2871
|
signatureResponse: {
|
|
2885
|
-
blockExpiration?: number | undefined;
|
|
2886
|
-
} & ({
|
|
2887
2872
|
signature: string;
|
|
2873
|
+
blockExpiration: number;
|
|
2888
2874
|
isAuthorized: true;
|
|
2889
2875
|
payload: string;
|
|
2890
2876
|
} | {
|
|
2891
2877
|
isAuthorized: false;
|
|
2892
2878
|
errorMessage?: any;
|
|
2893
|
-
}
|
|
2879
|
+
};
|
|
2894
2880
|
}, {
|
|
2895
2881
|
type: "getTxAuthSigResponse";
|
|
2896
2882
|
identifier: string;
|
|
2897
2883
|
signatureResponse: {
|
|
2898
|
-
blockExpiration?: number | undefined;
|
|
2899
|
-
} & ({
|
|
2900
2884
|
signature: string;
|
|
2885
|
+
blockExpiration: number;
|
|
2901
2886
|
isAuthorized: true;
|
|
2902
2887
|
payload: string;
|
|
2903
2888
|
} | {
|
|
2904
2889
|
isAuthorized: false;
|
|
2905
2890
|
errorMessage?: any;
|
|
2906
|
-
}
|
|
2891
|
+
};
|
|
2907
2892
|
}>, z.ZodObject<{
|
|
2908
2893
|
type: z.ZodLiteral<"getTezosTxAuthSigResponse">;
|
|
2909
|
-
signatureResponse: z.
|
|
2910
|
-
blockExpiration: z.ZodOptional<z.ZodNumber>;
|
|
2911
|
-
}, "strip", z.ZodTypeAny, {
|
|
2912
|
-
blockExpiration?: number | undefined;
|
|
2913
|
-
}, {
|
|
2914
|
-
blockExpiration?: number | undefined;
|
|
2915
|
-
}>, z.ZodUnion<[z.ZodObject<{
|
|
2894
|
+
signatureResponse: z.ZodUnion<[z.ZodObject<{
|
|
2916
2895
|
isAuthorized: z.ZodLiteral<true>;
|
|
2917
2896
|
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
|
|
2897
|
+
blockExpiration: z.ZodNumber;
|
|
2918
2898
|
}, "strip", z.ZodTypeAny, {
|
|
2919
2899
|
signature: `edsig${string}`;
|
|
2900
|
+
blockExpiration: number;
|
|
2920
2901
|
isAuthorized: true;
|
|
2921
2902
|
}, {
|
|
2922
2903
|
signature: string;
|
|
2904
|
+
blockExpiration: number;
|
|
2923
2905
|
isAuthorized: true;
|
|
2924
2906
|
}>, z.ZodObject<{
|
|
2925
2907
|
isAuthorized: z.ZodLiteral<false>;
|
|
@@ -2930,32 +2912,30 @@ export declare const IdentityResponseMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2930
2912
|
}, {
|
|
2931
2913
|
isAuthorized: false;
|
|
2932
2914
|
errorMessage?: any;
|
|
2933
|
-
}>]
|
|
2915
|
+
}>]>;
|
|
2934
2916
|
identifier: z.ZodString;
|
|
2935
2917
|
}, "strip", z.ZodTypeAny, {
|
|
2936
2918
|
type: "getTezosTxAuthSigResponse";
|
|
2937
2919
|
identifier: string;
|
|
2938
2920
|
signatureResponse: {
|
|
2939
|
-
blockExpiration?: number | undefined;
|
|
2940
|
-
} & ({
|
|
2941
2921
|
signature: `edsig${string}`;
|
|
2922
|
+
blockExpiration: number;
|
|
2942
2923
|
isAuthorized: true;
|
|
2943
2924
|
} | {
|
|
2944
2925
|
isAuthorized: false;
|
|
2945
2926
|
errorMessage?: any;
|
|
2946
|
-
}
|
|
2927
|
+
};
|
|
2947
2928
|
}, {
|
|
2948
2929
|
type: "getTezosTxAuthSigResponse";
|
|
2949
2930
|
identifier: string;
|
|
2950
2931
|
signatureResponse: {
|
|
2951
|
-
blockExpiration?: number | undefined;
|
|
2952
|
-
} & ({
|
|
2953
2932
|
signature: string;
|
|
2933
|
+
blockExpiration: number;
|
|
2954
2934
|
isAuthorized: true;
|
|
2955
2935
|
} | {
|
|
2956
2936
|
isAuthorized: false;
|
|
2957
2937
|
errorMessage?: any;
|
|
2958
|
-
}
|
|
2938
|
+
};
|
|
2959
2939
|
}>]>;
|
|
2960
2940
|
export type IdentityResponseMessage = z.infer<typeof IdentityResponseMessage>;
|
|
2961
2941
|
//# sourceMappingURL=host-requests.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"host-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["host-requests.schema.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"host-requests.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["host-requests.schema.ts"],"names":[],"mappings":"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"}
|