@bitgo/public-types 2.19.0 → 2.21.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.
Files changed (117) hide show
  1. package/dist/src/index.d.ts +0 -1
  2. package/dist/src/schema/index.d.ts +1 -1
  3. package/dist/src/schema/index.js +1 -0
  4. package/dist/src/schema/index.js.map +1 -1
  5. package/dist/src/schema/keyGen/index.d.ts +0 -1
  6. package/dist/src/schema/keyGen/keyGenState.d.ts +0 -1
  7. package/dist/src/schema/keyGen/keyGenType.d.ts +0 -1
  8. package/dist/src/schema/mpcv2/common/index.d.ts +0 -1
  9. package/dist/src/schema/mpcv2/common/mpcv2BroadcastMessage.d.ts +0 -1
  10. package/dist/src/schema/mpcv2/common/mpcv2P2PMessage.d.ts +0 -1
  11. package/dist/src/schema/mpcv2/common/mpcv2PartyFromStringOrNumber.d.ts +0 -1
  12. package/dist/src/schema/mpcv2/index.d.ts +0 -1
  13. package/dist/src/schema/mpcv2/keyGen/index.d.ts +0 -1
  14. package/dist/src/schema/mpcv2/keyGen/keygenRound.d.ts +0 -1
  15. package/dist/src/schema/mpcv2/keyGen/mpcv2KeyGenState.d.ts +0 -1
  16. package/dist/src/schema/mpcv2/signing/index.d.ts +0 -1
  17. package/dist/src/schema/mpcv2/signing/mpcv2SigningState.d.ts +0 -1
  18. package/dist/src/schema/mpcv2/signing/signingRound.d.ts +0 -1
  19. package/dist/src/schema/transactionRequest/index.d.ts +2 -0
  20. package/dist/src/schema/transactionRequest/index.js +19 -0
  21. package/dist/src/schema/transactionRequest/index.js.map +1 -0
  22. package/dist/src/schema/transactionRequest/transactionRequestState.d.ts +0 -1
  23. package/dist/src/schema/transactionRequest/transactionState.d.ts +3 -1
  24. package/dist/src/schema/transactionRequest/transactionState.js +3 -0
  25. package/dist/src/schema/transactionRequest/transactionState.js.map +1 -1
  26. package/dist/src/schema/transactions/coinSpecific.d.ts +0 -1
  27. package/dist/src/schema/transactions/index.d.ts +0 -1
  28. package/dist/src/schema/transactions/sendTransactions.d.ts +0 -1
  29. package/dist/src/schema/wallet/index.d.ts +0 -1
  30. package/dist/src/schema/wallet/wallet.d.ts +0 -1
  31. package/dist/src/schema/webhook/addWalletWebhookRequest.d.ts +4 -5
  32. package/dist/src/schema/webhook/enterpriseWebhooks.d.ts +3 -1
  33. package/dist/src/schema/webhook/index.d.ts +0 -1
  34. package/dist/src/schema/webhook/webhook.d.ts +3 -1
  35. package/dist/src/schema/webhook/webhookNotification.d.ts +0 -1
  36. package/dist/src/schema/webhook/webhookScope.d.ts +0 -1
  37. package/dist/src/schema/webhook/webhookState.d.ts +0 -1
  38. package/dist/src/schema/webhook/webhookType.d.ts +0 -1
  39. package/dist/src/utils/arrayFromSingle.d.ts +0 -1
  40. package/dist/src/utils/index.d.ts +0 -1
  41. package/dist/src/utils/minMaxArray.d.ts +0 -1
  42. package/dist/src/utils/optional.d.ts +0 -1
  43. package/dist/src/utils/primitives.d.ts +0 -1
  44. package/package.json +4 -3
  45. package/src/index.ts +2 -0
  46. package/src/schema/index.ts +6 -0
  47. package/src/schema/keyGen/index.ts +2 -0
  48. package/src/schema/keyGen/keyGenState.ts +8 -0
  49. package/src/schema/keyGen/keyGenType.ts +7 -0
  50. package/src/schema/mpcv2/common/index.ts +3 -0
  51. package/src/schema/mpcv2/common/mpcv2BroadcastMessage.ts +24 -0
  52. package/src/schema/mpcv2/common/mpcv2P2PMessage.ts +14 -0
  53. package/src/schema/mpcv2/common/mpcv2PartyFromStringOrNumber.ts +13 -0
  54. package/src/schema/mpcv2/index.ts +3 -0
  55. package/src/schema/mpcv2/keyGen/index.ts +2 -0
  56. package/src/schema/mpcv2/keyGen/keygenRound.ts +70 -0
  57. package/src/schema/mpcv2/keyGen/mpcv2KeyGenState.ts +12 -0
  58. package/src/schema/mpcv2/signing/index.ts +2 -0
  59. package/src/schema/mpcv2/signing/mpcv2SigningState.ts +11 -0
  60. package/src/schema/mpcv2/signing/signingRound.ts +113 -0
  61. package/src/schema/transactionRequest/index.ts +2 -0
  62. package/src/schema/transactionRequest/transactionRequestState.ts +21 -0
  63. package/src/schema/transactionRequest/transactionState.ts +22 -0
  64. package/src/schema/transactions/coinSpecific.ts +59 -0
  65. package/src/schema/transactions/index.ts +1 -0
  66. package/src/schema/transactions/sendTransactions.ts +245 -0
  67. package/src/schema/wallet/index.ts +1 -0
  68. package/src/schema/wallet/wallet.ts +8 -0
  69. package/src/schema/webhook/addWalletWebhookRequest.ts +24 -0
  70. package/src/schema/webhook/enterpriseWebhooks.ts +44 -0
  71. package/src/schema/webhook/index.ts +7 -0
  72. package/src/schema/webhook/webhook.ts +35 -0
  73. package/src/schema/webhook/webhookNotification.ts +33 -0
  74. package/src/schema/webhook/webhookScope.ts +10 -0
  75. package/src/schema/webhook/webhookState.ts +9 -0
  76. package/src/schema/webhook/webhookType.ts +56 -0
  77. package/src/utils/arrayFromSingle.ts +19 -0
  78. package/src/utils/index.ts +4 -0
  79. package/src/utils/minMaxArray.ts +27 -0
  80. package/src/utils/optional.ts +5 -0
  81. package/src/utils/primitives.ts +11 -0
  82. package/dist/src/index.d.ts.map +0 -1
  83. package/dist/src/schema/index.d.ts.map +0 -1
  84. package/dist/src/schema/keyGen/index.d.ts.map +0 -1
  85. package/dist/src/schema/keyGen/keyGenState.d.ts.map +0 -1
  86. package/dist/src/schema/keyGen/keyGenType.d.ts.map +0 -1
  87. package/dist/src/schema/mpcv2/common/index.d.ts.map +0 -1
  88. package/dist/src/schema/mpcv2/common/mpcv2BroadcastMessage.d.ts.map +0 -1
  89. package/dist/src/schema/mpcv2/common/mpcv2P2PMessage.d.ts.map +0 -1
  90. package/dist/src/schema/mpcv2/common/mpcv2PartyFromStringOrNumber.d.ts.map +0 -1
  91. package/dist/src/schema/mpcv2/index.d.ts.map +0 -1
  92. package/dist/src/schema/mpcv2/keyGen/index.d.ts.map +0 -1
  93. package/dist/src/schema/mpcv2/keyGen/keygenRound.d.ts.map +0 -1
  94. package/dist/src/schema/mpcv2/keyGen/mpcv2KeyGenState.d.ts.map +0 -1
  95. package/dist/src/schema/mpcv2/signing/index.d.ts.map +0 -1
  96. package/dist/src/schema/mpcv2/signing/mpcv2SigningState.d.ts.map +0 -1
  97. package/dist/src/schema/mpcv2/signing/signingRound.d.ts.map +0 -1
  98. package/dist/src/schema/transactionRequest/transactionRequestState.d.ts.map +0 -1
  99. package/dist/src/schema/transactionRequest/transactionState.d.ts.map +0 -1
  100. package/dist/src/schema/transactions/coinSpecific.d.ts.map +0 -1
  101. package/dist/src/schema/transactions/index.d.ts.map +0 -1
  102. package/dist/src/schema/transactions/sendTransactions.d.ts.map +0 -1
  103. package/dist/src/schema/wallet/index.d.ts.map +0 -1
  104. package/dist/src/schema/wallet/wallet.d.ts.map +0 -1
  105. package/dist/src/schema/webhook/addWalletWebhookRequest.d.ts.map +0 -1
  106. package/dist/src/schema/webhook/enterpriseWebhooks.d.ts.map +0 -1
  107. package/dist/src/schema/webhook/index.d.ts.map +0 -1
  108. package/dist/src/schema/webhook/webhook.d.ts.map +0 -1
  109. package/dist/src/schema/webhook/webhookNotification.d.ts.map +0 -1
  110. package/dist/src/schema/webhook/webhookScope.d.ts.map +0 -1
  111. package/dist/src/schema/webhook/webhookState.d.ts.map +0 -1
  112. package/dist/src/schema/webhook/webhookType.d.ts.map +0 -1
  113. package/dist/src/utils/arrayFromSingle.d.ts.map +0 -1
  114. package/dist/src/utils/index.d.ts.map +0 -1
  115. package/dist/src/utils/minMaxArray.d.ts.map +0 -1
  116. package/dist/src/utils/optional.d.ts.map +0 -1
  117. package/dist/src/utils/primitives.d.ts.map +0 -1
@@ -0,0 +1,56 @@
1
+ import * as t from "io-ts";
2
+
3
+ export enum WebhookTypeEnum {
4
+ // Webhook for txRequest.state changes
5
+ "txRequest" = "txRequest",
6
+ // Webhook for any txRequest.transactions[].state changes
7
+ "txRequestTransaction" = "txRequestTransaction",
8
+ "transfer" = "transfer",
9
+ "transaction" = "transaction",
10
+ "transactionRemoved" = "transactionRemoved",
11
+ "transactionExpire" = "transactionExpire",
12
+ "pendingapproval" = "pendingapproval",
13
+ "block" = "block",
14
+ "admin" = "admin",
15
+ "address_confirmation" = "address_confirmation",
16
+ "lowFee" = "lowFee",
17
+
18
+ // Specific to User Webhooks
19
+ "wallet_confirmation" = "wallet_confirmation",
20
+
21
+ "wireWithdrawal" = "wireWithdrawal",
22
+ "bankAccount" = "bankAccount",
23
+ }
24
+
25
+ export const WebhookType = t.keyof(WebhookTypeEnum, "WebhookType");
26
+ export type WebhookType = t.TypeOf<typeof WebhookType>;
27
+
28
+ export enum WalletWebhookTypeEnum {
29
+ "txRequest" = "txRequest",
30
+ "txRequestTransaction" = "txRequestTransaction",
31
+ "transfer" = "transfer",
32
+ "transaction" = "transaction",
33
+ "transactionRemoved" = "transactionRemoved",
34
+ "transactionExpire" = "transactionExpire",
35
+ "pendingapproval" = "pendingapproval",
36
+ "block" = "block",
37
+ "admin" = "admin",
38
+ "address_confirmation" = "address_confirmation",
39
+ "lowFee" = "lowFee",
40
+ "wireWithdrawal" = "wireWithdrawal",
41
+ }
42
+
43
+ export const WalletWebhookType = t.keyof(
44
+ WalletWebhookTypeEnum,
45
+ "WalletWebhookType",
46
+ );
47
+ export type WalletWebhookType = t.TypeOf<typeof WalletWebhookType>;
48
+
49
+ export enum EnterpriseWebhookTypeEnum {
50
+ "bankAccount" = "bankAccount",
51
+ }
52
+ export const EnterpriseWebhookType = t.keyof(
53
+ EnterpriseWebhookTypeEnum,
54
+ "EnterpriseWebhookType",
55
+ );
56
+ export type EnterpriseWebhookType = t.TypeOf<typeof EnterpriseWebhookType>;
@@ -0,0 +1,19 @@
1
+ import * as t from "io-ts";
2
+ import { pipe } from "fp-ts/function";
3
+ import { chain } from "fp-ts/lib/Either";
4
+
5
+ export function arrayFromSingle<C extends t.Mixed>(
6
+ codec: C,
7
+ name: string = `ArrayFromSingle<${codec.name}>`,
8
+ ) {
9
+ return new t.Type(
10
+ name,
11
+ t.array(codec).is,
12
+ (u, c) =>
13
+ pipe(
14
+ codec.validate(u, c),
15
+ chain((as) => t.array(codec).validate([as], c)),
16
+ ),
17
+ t.identity,
18
+ );
19
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./optional";
2
+ export * from "./primitives";
3
+ export * from "./arrayFromSingle";
4
+ export * from "./minMaxArray";
@@ -0,0 +1,27 @@
1
+ import * as t from "io-ts";
2
+
3
+ export interface IMinMaxArray<T> extends Array<T> {
4
+ readonly minMaxArray: unique symbol;
5
+ }
6
+
7
+ /**
8
+ * A helper that creates an array codec that limits the length of the array between [min, max]
9
+ * @param codec
10
+ * @param {min, max}
11
+ */
12
+ export const minMaxArray = <C extends t.Mixed>(
13
+ codec: C,
14
+ {
15
+ min,
16
+ max,
17
+ }: {
18
+ min?: number;
19
+ max?: number;
20
+ } = {},
21
+ ) =>
22
+ t.brand(
23
+ t.array(codec),
24
+ (n: C[]): n is t.Branded<C[], IMinMaxArray<C>> =>
25
+ (!min || min <= n.length) && (!max || n.length <= max),
26
+ "minMaxArray",
27
+ );
@@ -0,0 +1,5 @@
1
+ import * as t from "io-ts";
2
+
3
+ export function Optional<T>(type: t.Type<T>) {
4
+ return t.union([type, t.undefined]);
5
+ }
@@ -0,0 +1,11 @@
1
+ import * as t from "io-ts";
2
+ import { Optional } from "./optional";
3
+
4
+ export const optionalString = Optional(t.string);
5
+ export const optionalStringArray = Optional(t.array(t.string));
6
+ export const optionalBoolean = Optional(t.boolean);
7
+ export const optionalNumber = Optional(t.number);
8
+ export const optionalStringOrNumber = Optional(t.union([t.string, t.number]));
9
+ export const optionalUnknown = Optional(
10
+ t.intersection([t.unknown, t.partial({})]),
11
+ );
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schema/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/schema/keyGen/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"keyGenState.d.ts","sourceRoot":"","sources":["../../../../src/schema/keyGen/keyGenState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAExE,eAAO,MAAM,eAAe;;;;CAE3B,CAAC;AACF,eAAO,MAAM,WAAW;;;;EAA2B,CAAC;AACpD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,WAAW,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"keyGenType.d.ts","sourceRoot":"","sources":["../../../../src/schema/keyGen/keyGenType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,oBAAY,cAAc;IACxB,KAAK,UAAU;CAChB;AACD,eAAO,MAAM,UAAU,iCAA0B,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/common/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gCAAgC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mpcv2BroadcastMessage.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/common/mpcv2BroadcastMessage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,eAAO,MAAM,qBAAqB;;;;EAOjC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,mCAAmC;;;;;;IAK9C,CAAC;AAEH,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,MAAM,CACxD,OAAO,mCAAmC,CAC3C,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mpcv2P2PMessage.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/common/mpcv2P2PMessage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,eAAO,MAAM,eAAe;;;;;EAQ3B,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,eAAe,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mpcv2PartyFromStringOrNumber.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/common/mpcv2PartyFromStringOrNumber.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAK3B,eAAO,MAAM,4BAA4B,yGAGxC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CACjD,OAAO,4BAA4B,CACpC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/schema/mpcv2/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/keyGen/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"keygenRound.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/keyGen/keygenRound.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAI3B,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;EAKnC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;EAKpC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;EAMnC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;EAKpC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAC9C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;EAMnC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;;;;EAIpC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAC9C,OAAO,yBAAyB,CACjC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mpcv2KeyGenState.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/keyGen/mpcv2KeyGenState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,oBAAY,oBAAoB;IAC9B,UAAU,aAAa;IACvB,UAAU,aAAa;IACvB,UAAU,aAAa;CACxB;AACD,eAAO,MAAM,gBAAgB,uCAG5B,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/signing/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mpcv2SigningState.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/signing/mpcv2SigningState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,iBAAiB,qJAM5B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"signingRound.d.ts","sourceRoot":"","sources":["../../../../../src/schema/mpcv2/signing/signingRound.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAQ3B,eAAO,MAAM,uBAAuB;;EAElC,CAAC;AAKH,eAAO,MAAM,8BAA8B;;;;;;;;;;;IAWzC,CAAC;AAEH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CACnD,OAAO,8BAA8B,CACtC,CAAC;AAKF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;IAY1C,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CACpD,OAAO,+BAA+B,CACvC,CAAC;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;IAYzC,CAAC;AAEH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CACnD,OAAO,8BAA8B,CACtC,CAAC;AAKF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;IAW1C,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CACpD,OAAO,+BAA+B,CACvC,CAAC;AAKF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;IAWzC,CAAC;AAEH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CACnD,OAAO,8BAA8B,CACtC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"transactionRequestState.d.ts","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/transactionRequestState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;EAiBnC,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"transactionState.d.ts","sourceRoot":"","sources":["../../../../src/schema/transactionRequest/transactionState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAe5B,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"coinSpecific.d.ts","sourceRoot":"","sources":["../../../../src/schema/transactions/coinSpecific.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAkC3B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBnC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/schema/transactions/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"sendTransactions.d.ts","sourceRoot":"","sources":["../../../../src/schema/transactions/sendTransactions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAW3B,QAAA,MAAM,SAAS;;;;;;;EAOb,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,SAAS,CAAC,CAAC;AAQ9D,QAAA,MAAM,uBAAuB;;;;;;;IAU3B,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE/E,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYd,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC;AAEhE,eAAO,MAAM,IAAI;;;EAGf,CAAC;AAoBH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuGtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAOtB,CAAC;AACF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC;AAgBrD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCzB,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/schema/wallet/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../../../src/schema/wallet/wallet.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,eAAO,MAAM,UAAU;;;EAGrB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"addWalletWebhookRequest.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/addWalletWebhookRequest.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAO3B,eAAO,MAAM,2BAA2B;;;;;;;;;CASvC,CAAC;AACF,eAAO,MAAM,4BAA4B;;;;;;;;;EAEvC,CAAC;AAEH,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAChD,OAAO,4BAA4B,CACpC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"enterpriseWebhooks.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/enterpriseWebhooks.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,eAAO,MAAM,+BAA+B;;;;CAI3C,CAAC;AACF,eAAO,MAAM,gCAAgC;;;;EAE3C,CAAC;AAEH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CACpD,OAAO,gCAAgC,CACxC,CAAC;AAEF,eAAO,MAAM,iCAAiC;;;;CAI7C,CAAC;AAEF,eAAO,MAAM,kCAAkC;;;;EAE7C,CAAC;AAEH,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,MAAM,CACtD,OAAO,kCAAkC,CAC1C,CAAC;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAOzC,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CACnD,OAAO,8BAA8B,CACtC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,WAAW,CAAC;AAC1B,cAAc,uBAAuB,CAAC;AACtC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"webhook.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/webhook.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAQ3B,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0BlB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"webhookNotification.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/webhookNotification.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;IA6B9B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"webhookScope.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/webhookScope.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,oBAAY,gBAAgB;IAC1B,QAAQ,WAAW;IACnB,YAAY,eAAe;IAC3B,cAAc,iBAAiB;CAChC;AAED,eAAO,MAAM,YAAY,mCAA4C,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,YAAY,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"webhookState.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/webhookState.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,oBAAY,gBAAgB;IAC1B,QAAQ,WAAW;IACnB,WAAW,cAAc;CAC1B;AAED,eAAO,MAAM,YAAY,mCAA4C,CAAC;AACtE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,YAAY,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"webhookType.d.ts","sourceRoot":"","sources":["../../../../src/schema/webhook/webhookType.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,oBAAY,eAAe;IAEzB,WAAW,cAAc;IAEzB,sBAAsB,yBAAyB;IAC/C,UAAU,aAAa;IACvB,aAAa,gBAAgB;IAC7B,oBAAoB,uBAAuB;IAC3C,mBAAmB,sBAAsB;IACzC,iBAAiB,oBAAoB;IACrC,OAAO,UAAU;IACjB,OAAO,UAAU;IACjB,sBAAsB,yBAAyB;IAC/C,QAAQ,WAAW;IAGnB,qBAAqB,wBAAwB;IAE7C,gBAAgB,mBAAmB;IACnC,aAAa,gBAAgB;CAC9B;AAED,eAAO,MAAM,WAAW,kCAA0C,CAAC;AACnE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,WAAW,CAAC,CAAC;AAEvD,oBAAY,qBAAqB;IAC/B,WAAW,cAAc;IACzB,sBAAsB,yBAAyB;IAC/C,UAAU,aAAa;IACvB,aAAa,gBAAgB;IAC7B,oBAAoB,uBAAuB;IAC3C,mBAAmB,sBAAsB;IACzC,iBAAiB,oBAAoB;IACrC,OAAO,UAAU;IACjB,OAAO,UAAU;IACjB,sBAAsB,yBAAyB;IAC/C,QAAQ,WAAW;IACnB,gBAAgB,mBAAmB;CACpC;AAED,eAAO,MAAM,iBAAiB,wCAG7B,CAAC;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAEnE,oBAAY,yBAAyB;IACnC,aAAa,gBAAgB;CAC9B;AACD,eAAO,MAAM,qBAAqB,4CAGjC,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"arrayFromSingle.d.ts","sourceRoot":"","sources":["../../../src/utils/arrayFromSingle.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAI3B,wBAAgB,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,KAAK,EAC/C,KAAK,EAAE,CAAC,EACR,IAAI,GAAE,MAAyC,iDAYhD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"minMaxArray.d.ts","sourceRoot":"","sources":["../../../src/utils/minMaxArray.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,MAAM,WAAW,YAAY,CAAC,CAAC,CAAE,SAAQ,KAAK,CAAC,CAAC,CAAC;IAC/C,QAAQ,CAAC,WAAW,EAAE,OAAO,MAAM,CAAC;CACrC;AAOD,eAAO,MAAM,WAAW;;;4CAerB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"optional.d.ts","sourceRoot":"","sources":["../../../src/utils/optional.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAE3B,wBAAgB,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,mDAE1C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"primitives.d.ts","sourceRoot":"","sources":["../../../src/utils/primitives.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,eAAO,MAAM,cAAc,2DAAqB,CAAC;AACjD,eAAO,MAAM,mBAAmB,+DAA8B,CAAC;AAC/D,eAAO,MAAM,eAAe,6DAAsB,CAAC;AACnD,eAAO,MAAM,cAAc,2DAAqB,CAAC;AACjD,eAAO,MAAM,sBAAsB,6EAA0C,CAAC;AAC9E,eAAO,MAAM,eAAe,mDAE3B,CAAC"}