@bitgo/public-types 6.43.0 → 6.45.0
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/src/schema/transactionRequest/baseShare.js +3 -3
- package/dist/src/schema/transactionRequest/baseShare.js.map +1 -1
- package/dist/src/schema/transactionRequest/index.d.ts +1 -0
- package/dist/src/schema/transactionRequest/index.js +1 -0
- package/dist/src/schema/transactionRequest/index.js.map +1 -1
- package/dist/src/schema/transactionRequest/signatureShare.js +3 -3
- package/dist/src/schema/transactionRequest/signatureShare.js.map +1 -1
- package/dist/src/schema/transactionRequest/signatureShareTypeCodec.d.ts +7 -0
- package/dist/src/schema/transactionRequest/{signatureShareType.js → signatureShareTypeCodec.js} +4 -4
- package/dist/src/schema/transactionRequest/signatureShareTypeCodec.js.map +1 -0
- package/dist/src/schema/webhook/organizationWebhooks.d.ts +2 -2
- package/dist/src/schema/webhook/webhookType.d.ts +6 -2
- package/dist/src/schema/webhook/webhookType.js +4 -0
- package/dist/src/schema/webhook/webhookType.js.map +1 -1
- package/package.json +1 -1
- package/src/schema/transactionRequest/baseShare.ts +3 -3
- package/src/schema/transactionRequest/index.ts +1 -0
- package/src/schema/transactionRequest/signatureShare.ts +3 -3
- package/src/schema/transactionRequest/signatureShareTypeCodec.ts +11 -0
- package/src/schema/webhook/webhookType.ts +12 -0
- package/dist/src/schema/transactionRequest/signatureShareType.d.ts +0 -7
- package/dist/src/schema/transactionRequest/signatureShareType.js.map +0 -1
- package/src/schema/transactionRequest/signatureShareType.ts +0 -11
|
@@ -25,10 +25,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.BaseShare = void 0;
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
|
-
const
|
|
28
|
+
const signatureShareTypeCodec_1 = require("./signatureShareTypeCodec");
|
|
29
29
|
exports.BaseShare = t.type({
|
|
30
|
-
from:
|
|
31
|
-
to:
|
|
30
|
+
from: signatureShareTypeCodec_1.SignatureShareTypeCodec,
|
|
31
|
+
to: signatureShareTypeCodec_1.SignatureShareTypeCodec,
|
|
32
32
|
share: t.string,
|
|
33
33
|
});
|
|
34
34
|
//# sourceMappingURL=baseShare.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"baseShare.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/baseShare.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,
|
|
1
|
+
{"version":3,"file":"baseShare.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/baseShare.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uEAAoE;AAEvD,QAAA,SAAS,GAAG,CAAC,CAAC,IAAI,CAAC;IAK9B,IAAI,EAAE,iDAAuB;IAK7B,EAAE,EAAE,iDAAuB;IAE3B,KAAK,EAAE,CAAC,CAAC,MAAM;CAChB,CAAC,CAAC"}
|
|
@@ -5,6 +5,7 @@ export * from "./transactionRequest";
|
|
|
5
5
|
export * from "./transactionRequestApiVersion";
|
|
6
6
|
export * from "./commitmentShare";
|
|
7
7
|
export * from "./signatureShare";
|
|
8
|
+
export * from "./signatureShareTypeCodec";
|
|
8
9
|
export * from "./unsignedTransaction";
|
|
9
10
|
export * from "./message";
|
|
10
11
|
export * from "./transaction";
|
|
@@ -21,6 +21,7 @@ __exportStar(require("./transactionRequest"), exports);
|
|
|
21
21
|
__exportStar(require("./transactionRequestApiVersion"), exports);
|
|
22
22
|
__exportStar(require("./commitmentShare"), exports);
|
|
23
23
|
__exportStar(require("./signatureShare"), exports);
|
|
24
|
+
__exportStar(require("./signatureShareTypeCodec"), exports);
|
|
24
25
|
__exportStar(require("./unsignedTransaction"), exports);
|
|
25
26
|
__exportStar(require("./message"), exports);
|
|
26
27
|
__exportStar(require("./transaction"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,4DAA0C;AAC1C,4CAA0B;AAC1B,uDAAqC;AACrC,iEAA+C;AAC/C,oDAAkC;AAClC,mDAAiC;AACjC,wDAAsC;AACtC,4CAA0B;AAC1B,gDAA8B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAmC;AACnC,4DAA0C;AAC1C,4CAA0B;AAC1B,uDAAqC;AACrC,iEAA+C;AAC/C,oDAAkC;AAClC,mDAAiC;AACjC,4DAA0C;AAC1C,wDAAsC;AACtC,4CAA0B;AAC1B,gDAA8B"}
|
|
@@ -25,10 +25,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.SignatureShare = exports.SignatureShareWithoutVssProof = void 0;
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
|
-
const
|
|
28
|
+
const signatureShareTypeCodec_1 = require("./signatureShareTypeCodec");
|
|
29
29
|
exports.SignatureShareWithoutVssProof = t.type({
|
|
30
|
-
from:
|
|
31
|
-
to:
|
|
30
|
+
from: signatureShareTypeCodec_1.SignatureShareTypeCodec,
|
|
31
|
+
to: signatureShareTypeCodec_1.SignatureShareTypeCodec,
|
|
32
32
|
share: t.string,
|
|
33
33
|
});
|
|
34
34
|
exports.SignatureShare = t.intersection([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"signatureShare.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/signatureShare.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,
|
|
1
|
+
{"version":3,"file":"signatureShare.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/signatureShare.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,uEAAoE;AAEvD,QAAA,6BAA6B,GAAG,CAAC,CAAC,IAAI,CAAC;IAElD,IAAI,EAAE,iDAAuB;IAE7B,EAAE,EAAE,iDAAuB;IAE3B,KAAK,EAAE,CAAC,CAAC,MAAM;CAChB,CAAC,CAAC;AAMU,QAAA,cAAc,GAAG,CAAC,CAAC,YAAY,CAAC;IAC3C,qCAA6B;IAC7B,CAAC,CAAC,OAAO,CAAC;QAER,QAAQ,EAAE,CAAC,CAAC,MAAM;QAElB,iBAAiB,EAAE,CAAC,CAAC,MAAM;QAE3B,WAAW,EAAE,CAAC,CAAC,MAAM;KACtB,CAAC;CACH,CAAC,CAAC"}
|
package/dist/src/schema/transactionRequest/{signatureShareType.js → signatureShareTypeCodec.js}
RENAMED
|
@@ -23,11 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.SignatureShareTypeCodec = void 0;
|
|
27
27
|
const t = __importStar(require("io-ts"));
|
|
28
|
-
exports.
|
|
28
|
+
exports.SignatureShareTypeCodec = t.keyof({
|
|
29
29
|
user: 1,
|
|
30
30
|
backup: 1,
|
|
31
31
|
bitgo: 1,
|
|
32
|
-
}, "
|
|
33
|
-
//# sourceMappingURL=
|
|
32
|
+
}, "SignatureShareTypeCodec");
|
|
33
|
+
//# sourceMappingURL=signatureShareTypeCodec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signatureShareTypeCodec.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/signatureShareTypeCodec.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAEd,QAAA,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC5C;IACE,IAAI,EAAE,CAAC;IACP,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,CAAC;CACT,EACD,yBAAyB,CAC1B,CAAC"}
|
|
@@ -11,12 +11,12 @@ export declare const AddOrganizationWebhookRequestBodyC: t.TypeC<{
|
|
|
11
11
|
}>;
|
|
12
12
|
export type AddOrganizationWebhookRequestBody = t.TypeOf<typeof AddOrganizationWebhookRequestBodyC>;
|
|
13
13
|
export declare const ListOrganizationWebhooksRequestBody: {
|
|
14
|
-
type: t.UnionC<[t.Type<"txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder", "txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder", unknown>, t.UndefinedC]>;
|
|
14
|
+
type: t.UnionC<[t.Type<"txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder" | "whitelistApproved" | "whitelistRejected", "txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder" | "whitelistApproved" | "whitelistRejected", unknown>, t.UndefinedC]>;
|
|
15
15
|
limit: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
16
16
|
prevId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
17
17
|
};
|
|
18
18
|
export declare const ListOrganizationWebhooksRequestBodyC: t.TypeC<{
|
|
19
|
-
type: t.UnionC<[t.Type<"txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder", "txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder", unknown>, t.UndefinedC]>;
|
|
19
|
+
type: t.UnionC<[t.Type<"txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder" | "whitelistApproved" | "whitelistRejected", "txRequest" | "txRequestTransaction" | "transfer" | "pendingapproval" | "bankAccount" | "userKycState" | "enterpriseKycState" | "identityStatus" | "idvStatus" | "accessToken" | "reversal" | "tradeOrder" | "whitelistApproved" | "whitelistRejected", unknown>, t.UndefinedC]>;
|
|
20
20
|
limit: t.UnionC<[t.Type<string | number, string | number, unknown>, t.UndefinedC]>;
|
|
21
21
|
prevId: t.UnionC<[t.Type<string, string, unknown>, t.UndefinedC]>;
|
|
22
22
|
}>;
|
|
@@ -33,7 +33,9 @@ export declare enum WebhookTypeEnum {
|
|
|
33
33
|
"twoStepTransfer" = "twoStepTransfer",
|
|
34
34
|
"twoStepDeposit" = "twoStepDeposit",
|
|
35
35
|
"twoStepWithdrawal" = "twoStepWithdrawal",
|
|
36
|
-
"pendingDecryption" = "pendingDecryption"
|
|
36
|
+
"pendingDecryption" = "pendingDecryption",
|
|
37
|
+
"whitelistApproved" = "whitelistApproved",
|
|
38
|
+
"whitelistRejected" = "whitelistRejected"
|
|
37
39
|
}
|
|
38
40
|
export declare const WebhookType: t.KeyofC<typeof WebhookTypeEnum>;
|
|
39
41
|
export type WebhookType = t.TypeOf<typeof WebhookType>;
|
|
@@ -82,7 +84,9 @@ export declare enum OrganizationWebhookTypeEnum {
|
|
|
82
84
|
"enterpriseKycState" = "enterpriseKycState",
|
|
83
85
|
"accessToken" = "accessToken",
|
|
84
86
|
"reversal" = "reversal",
|
|
85
|
-
"tradeOrder" = "tradeOrder"
|
|
87
|
+
"tradeOrder" = "tradeOrder",
|
|
88
|
+
"whitelistApproved" = "whitelistApproved",
|
|
89
|
+
"whitelistRejected" = "whitelistRejected"
|
|
86
90
|
}
|
|
87
91
|
export declare const OrganizationWebhookType: t.KeyofC<typeof OrganizationWebhookTypeEnum>;
|
|
88
92
|
export type OrganizationWebhookType = t.TypeOf<typeof OrganizationWebhookType>;
|
|
@@ -61,6 +61,8 @@ var WebhookTypeEnum;
|
|
|
61
61
|
WebhookTypeEnum["twoStepDeposit"] = "twoStepDeposit";
|
|
62
62
|
WebhookTypeEnum["twoStepWithdrawal"] = "twoStepWithdrawal";
|
|
63
63
|
WebhookTypeEnum["pendingDecryption"] = "pendingDecryption";
|
|
64
|
+
WebhookTypeEnum["whitelistApproved"] = "whitelistApproved";
|
|
65
|
+
WebhookTypeEnum["whitelistRejected"] = "whitelistRejected";
|
|
64
66
|
})(WebhookTypeEnum || (exports.WebhookTypeEnum = WebhookTypeEnum = {}));
|
|
65
67
|
exports.WebhookType = t.keyof(WebhookTypeEnum, "WebhookType");
|
|
66
68
|
var WalletWebhookTypeEnum;
|
|
@@ -110,6 +112,8 @@ var OrganizationWebhookTypeEnum;
|
|
|
110
112
|
OrganizationWebhookTypeEnum["accessToken"] = "accessToken";
|
|
111
113
|
OrganizationWebhookTypeEnum["reversal"] = "reversal";
|
|
112
114
|
OrganizationWebhookTypeEnum["tradeOrder"] = "tradeOrder";
|
|
115
|
+
OrganizationWebhookTypeEnum["whitelistApproved"] = "whitelistApproved";
|
|
116
|
+
OrganizationWebhookTypeEnum["whitelistRejected"] = "whitelistRejected";
|
|
113
117
|
})(OrganizationWebhookTypeEnum || (exports.OrganizationWebhookTypeEnum = OrganizationWebhookTypeEnum = {}));
|
|
114
118
|
exports.OrganizationWebhookType = t.keyof(OrganizationWebhookTypeEnum, "OrganizationWebhookType");
|
|
115
119
|
//# sourceMappingURL=webhookType.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webhookType.js","sourceRoot":"","sources":["../../../../src/schema/webhook/webhookType.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAE3B,IAAY,
|
|
1
|
+
{"version":3,"file":"webhookType.js","sourceRoot":"","sources":["../../../../src/schema/webhook/webhookType.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAE3B,IAAY,eAmEX;AAnED,WAAY,eAAe;IAEzB,0CAAyB,CAAA;IAEzB,gEAA+C,CAAA;IAC/C,wCAAuB,CAAA;IACvB,8CAA6B,CAAA;IAC7B,4DAA2C,CAAA;IAC3C,0DAAyC,CAAA;IACzC,sDAAqC,CAAA;IACrC,kCAAiB,CAAA;IACjB,kCAAiB,CAAA;IACjB,gEAA+C,CAAA;IAC/C,oCAAmB,CAAA;IACnB,oDAAmC,CAAA;IAEnC,gEAA+C,CAAA;IAG/C,8DAA6C,CAAA;IAE7C,8CAA6B,CAAA;IAC7B,gDAA+B,CAAA;IAC/B,4DAA2C,CAAA;IAC3C,oDAAmC,CAAA;IACnC,0CAAyB,CAAA;IAEzB,8CAA6B,CAAA;IAC7B,oDAAmC,CAAA;IACnC,oDAAmC,CAAA;IACnC,oDAAmC,CAAA;IACnC,0CAAyB,CAAA;IAEzB,8DAA6C,CAAA;IAG7C,wCAAuB,CAAA;IAGvB,4EAA2D,CAAA;IAG3D,sCAAqB,CAAA;IAGrB,4CAA2B,CAAA;IAG3B,kDAAiC,CAAA;IAGjC,sDAAqC,CAAA;IAGrC,oDAAmC,CAAA;IAGnC,0DAAyC,CAAA;IAGzC,0DAAyC,CAAA;IAGzC,0DAAyC,CAAA;IAGzC,0DAAyC,CAAA;AAC3C,CAAC,EAnEW,eAAe,+BAAf,eAAe,QAmE1B;AAEY,QAAA,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,eAAe,EAAE,aAAa,CAAC,CAAC;AAGnE,IAAY,qBAgCX;AAhCD,WAAY,qBAAqB;IAC/B,gDAAyB,CAAA;IACzB,sEAA+C,CAAA;IAC/C,8CAAuB,CAAA;IACvB,oDAA6B,CAAA;IAC7B,kEAA2C,CAAA;IAC3C,gEAAyC,CAAA;IACzC,4DAAqC,CAAA;IACrC,wCAAiB,CAAA;IACjB,wCAAiB,CAAA;IACjB,sEAA+C,CAAA;IAC/C,0CAAmB,CAAA;IACnB,0DAAmC,CAAA;IACnC,sEAA+C,CAAA;IAC/C,kFAA2D,CAAA;IAC3D,0DAAmC,CAAA;IACnC,4CAAqB,CAAA;IAGrB,wDAAiC,CAAA;IAGjC,4DAAqC,CAAA;IAGrC,0DAAmC,CAAA;IAGnC,gEAAyC,CAAA;IAGzC,gEAAyC,CAAA;AAC3C,CAAC,EAhCW,qBAAqB,qCAArB,qBAAqB,QAgChC;AAEY,QAAA,iBAAiB,GAAG,CAAC,CAAC,KAAK,CACtC,qBAAqB,EACrB,mBAAmB,CACpB,CAAC;AAGF,IAAY,yBAKX;AALD,WAAY,yBAAyB;IACnC,wDAA6B,CAAA;IAC7B,wDAA6B,CAAA;IAC7B,wEAA6C,CAAA;IAC7C,kDAAuB,CAAA;AACzB,CAAC,EALW,yBAAyB,yCAAzB,yBAAyB,QAKpC;AACY,QAAA,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAC1C,yBAAyB,EACzB,uBAAuB,CACxB,CAAC;AAGF,IAAY,2BAmBX;AAnBD,WAAY,2BAA2B;IACrC,oDAAuB,CAAA;IACvB,sDAAyB,CAAA;IACzB,kEAAqC,CAAA;IACrC,4EAA+C,CAAA;IAC/C,0DAA6B,CAAA;IAC7B,gEAAmC,CAAA;IACnC,sDAAyB,CAAA;IACzB,4DAA+B,CAAA;IAC/B,wEAA2C,CAAA;IAC3C,0DAA6B,CAAA;IAC7B,oDAAuB,CAAA;IACvB,wDAA2B,CAAA;IAG3B,sEAAyC,CAAA;IAGzC,sEAAyC,CAAA;AAC3C,CAAC,EAnBW,2BAA2B,2CAA3B,2BAA2B,QAmBtC;AACY,QAAA,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAC5C,2BAA2B,EAC3B,yBAAyB,CAC1B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
|
-
import {
|
|
2
|
+
import { SignatureShareTypeCodec } from "./signatureShareTypeCodec";
|
|
3
3
|
|
|
4
4
|
export const BaseShare = t.type({
|
|
5
5
|
/**
|
|
6
6
|
* The source of the commitment share
|
|
7
7
|
* @example user
|
|
8
8
|
*/
|
|
9
|
-
from:
|
|
9
|
+
from: SignatureShareTypeCodec,
|
|
10
10
|
/**
|
|
11
11
|
* The recipient of the commitment share.
|
|
12
12
|
* @example bitgo
|
|
13
13
|
*/
|
|
14
|
-
to:
|
|
14
|
+
to: SignatureShareTypeCodec,
|
|
15
15
|
/** The commitment share. */
|
|
16
16
|
share: t.string,
|
|
17
17
|
});
|
|
@@ -5,6 +5,7 @@ export * from "./transactionRequest";
|
|
|
5
5
|
export * from "./transactionRequestApiVersion";
|
|
6
6
|
export * from "./commitmentShare";
|
|
7
7
|
export * from "./signatureShare";
|
|
8
|
+
export * from "./signatureShareTypeCodec";
|
|
8
9
|
export * from "./unsignedTransaction";
|
|
9
10
|
export * from "./message";
|
|
10
11
|
export * from "./transaction";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as t from "io-ts";
|
|
2
|
-
import {
|
|
2
|
+
import { SignatureShareTypeCodec } from "./signatureShareTypeCodec";
|
|
3
3
|
|
|
4
4
|
export const SignatureShareWithoutVssProof = t.type({
|
|
5
5
|
/** The source of the signature share. */
|
|
6
|
-
from:
|
|
6
|
+
from: SignatureShareTypeCodec,
|
|
7
7
|
/** The recipient of the signature share. */
|
|
8
|
-
to:
|
|
8
|
+
to: SignatureShareTypeCodec,
|
|
9
9
|
/** The signature share */
|
|
10
10
|
share: t.string,
|
|
11
11
|
});
|
|
@@ -61,6 +61,12 @@ export enum WebhookTypeEnum {
|
|
|
61
61
|
|
|
62
62
|
/** ERC-7984 confidential transfer pending decryption (wallet-scoped). */
|
|
63
63
|
"pendingDecryption" = "pendingDecryption",
|
|
64
|
+
|
|
65
|
+
/** Travel Rule whitelist entry approved. */
|
|
66
|
+
"whitelistApproved" = "whitelistApproved",
|
|
67
|
+
|
|
68
|
+
/** Travel Rule whitelist entry rejected. */
|
|
69
|
+
"whitelistRejected" = "whitelistRejected",
|
|
64
70
|
}
|
|
65
71
|
|
|
66
72
|
export const WebhookType = t.keyof(WebhookTypeEnum, "WebhookType");
|
|
@@ -131,6 +137,12 @@ export enum OrganizationWebhookTypeEnum {
|
|
|
131
137
|
"accessToken" = "accessToken",
|
|
132
138
|
"reversal" = "reversal",
|
|
133
139
|
"tradeOrder" = "tradeOrder",
|
|
140
|
+
|
|
141
|
+
/** Travel Rule whitelist entry approved. */
|
|
142
|
+
"whitelistApproved" = "whitelistApproved",
|
|
143
|
+
|
|
144
|
+
/** Travel Rule whitelist entry rejected. */
|
|
145
|
+
"whitelistRejected" = "whitelistRejected",
|
|
134
146
|
}
|
|
135
147
|
export const OrganizationWebhookType = t.keyof(
|
|
136
148
|
OrganizationWebhookTypeEnum,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"signatureShareType.js","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/signatureShareType.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAEd,QAAA,kBAAkB,GAAG,CAAC,CAAC,KAAK,CACvC;IACE,IAAI,EAAE,CAAC;IACP,MAAM,EAAE,CAAC;IACT,KAAK,EAAE,CAAC;CACT,EACD,oBAAoB,CACrB,CAAC"}
|